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§
sourcefn find_block_reward_address() -> Option<RewardAddress>
fn find_block_reward_address() -> Option<RewardAddress>
Find the address for a block rewards based on the pre-runtime digests.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.