Trait frame_support_test::Config[][src]

pub trait Config: 'static {
    type Origin: Codec + EncodeLike + Default;
    type BlockNumber: Codec + EncodeLike + Default;
    type PalletInfo: PalletInfo;
    type DbWeight: Get<RuntimeDbWeight>;
}
Expand description

The configuration trait

Associated Types

The runtime origin type.

The block number type.

The information about the pallet setup in the runtime.

The db weights.

Implementors