pub trait LocalAccounts: Send + Sync {
    fn is_local(&self, &H160) -> bool;
}
Expand description

Local accounts checker

Required methods

Returns true if given address should be considered local account.

Implementations on Foreign Types

Implementors