pub trait ReputationSharing {
    fn reputation_share(&mut self, account_id: AccountId, amount: u32) -> u32;
    fn reputation_shares_left(&self, account_id: AccountId) -> u32;
}

Required Methods§

Implementors§