Trait pallet_merkle::pallet::Config[][src]

pub trait Config: Config {
    type Event: IsType<Self::Event> + From<Event<Self>>;
    type GroupId: Encode + Decode + Parameter + AtLeast32Bit + Default + Copy;
    type MaxTreeDepth: Get<u8>;
    type CacheBlockLength: Get<Self::BlockNumber>;
    type WeightInfo: WeightInfo;
}

The pallet’s configuration trait.

Associated Types

type Event: IsType<Self::Event> + From<Event<Self>>[src]

The overarching event type.

type GroupId: Encode + Decode + Parameter + AtLeast32Bit + Default + Copy[src]

The overarching group ID type

type MaxTreeDepth: Get<u8>[src]

The max depth of trees

type CacheBlockLength: Get<Self::BlockNumber>[src]

The amount of blocks to cache roots over

type WeightInfo: WeightInfo[src]

Weight information for extrinsics in this pallet.

Loading content...

Implementors

Loading content...