pub type AuctionInfo<T: Config> = StorageValue<_GeneratedPrefixForStorageAuctionInfo<T>, (<<T as Config>::Leaser as Leaser<BlockNumberFor<T>>>::LeasePeriod, BlockNumberFor<T>)>;
Expand description

Information relating to the current auction, if there is one.

The first item in the tuple is the lease period index that the first of the four contiguous lease periods on auction is for. The second is the block number when the auction will “begin to end”, i.e. the first block of the Ending Period of the auction.

Storage type is [StorageValue] with value type (LeasePeriodOf < T >, BlockNumberFor < T >).