pub trait FindBlockRewardAddress<RewardAddress> {
    // Required method
    fn find_block_reward_address() -> Option<RewardAddress>;
}
Expand description

A trait for finding the address for a block reward based on the PreRuntime digests contained within it.

Required Methods§

source

fn find_block_reward_address() -> Option<RewardAddress>

Find the address for a block rewards based on the pre-runtime digests.

Object Safety§

This trait is not object safe.

Implementors§