pub trait FindVotingRewardAddresses<RewardAddress> {
    // Required method
    fn find_voting_reward_addresses() -> Vec<RewardAddress>;
}
Expand description

A trait for finding the addresses for voting reward based on transactions found in the block.

Required Methods§

source

fn find_voting_reward_addresses() -> Vec<RewardAddress>

Find the addresses for voting rewards based on transactions found in the block.

Object Safety§

This trait is not object safe.

Implementors§