pub async fn produce_next_block<Block, HostFns: HostFunctions>(
    ext_mutex: Arc<Mutex<TestExternalities<HashingFor<Block>>>>,
    executor: &WasmExecutor<HostFns>,
    parent_header: Block::Header,
    chain: ProviderVariant,
    previous_block_building_info: Option<(InherentData, Digest)>,
) -> Result<(Block, (InherentData, Digest), Option<ExtrinsicInclusionMode>)>
where Block: BlockT<Hash = H256> + DeserializeOwned, Block::Header: DeserializeOwned, <Block::Hash as FromStr>::Err: Debug, NumberFor<Block>: FromStr, <NumberFor<Block> as FromStr>::Err: Debug,
Expand description

Produces next block containing only inherents.