Trait substrate_test_runtime_client::BlockBuilderExt[][src]

pub trait BlockBuilderExt {
    fn push_transfer(&mut self, transfer: Transfer) -> Result<(), Error>;
fn push_storage_change(
        &mut self,
        key: Vec<u8>,
        value: Option<Vec<u8>>
    ) -> Result<(), Error>;
fn push_changes_trie_configuration_update(
        &mut self,
        new_config: Option<ChangesTrieConfiguration>
    ) -> Result<(), Error>; }
Expand description

Extension trait for test block builder.

Required methods

Add transfer extrinsic to the block.

Add storage change extrinsic to the block.

Add changes trie configuration update extrinsic to the block.

Implementations on Foreign Types

Implementors