Trait pallet_bidding::pallet::Config  
source · pub trait Config: Config + Config {
    type Event: From<Event<Self>> + IsType<<Self as Config>::Event>;
    type WeightInfo: WeightInfo;
    type Currency: ReservableCurrency<Self::AccountId>;
    type SimultaneousAssetBidder: Get<u64>;
    type MaxTriesBid: Get<u64>;
    type MaxTriesAseemblingInvestor: Get<u64>;
    type MaximumSharePerInvestor: Get<u64>;
    type MinimumSharePerInvestor: Get<u64>;
    type NewAssetScanPeriod: Get<Self::BlockNumber>;
}Expand description
Configure the pallet by specifying the parameters and types on which it depends.
Required Associated Types§
sourcetype Event: From<Event<Self>> + IsType<<Self as Config>::Event>
 
type Event: From<Event<Self>> + IsType<<Self as Config>::Event>
Because this pallet emits events, it depends on the runtime’s definition of an event.