pub trait ParitySetAccounts: Sized + Send + Sync + 'static {
    fn set_engine_signer(&self, _: H160, _: String) -> Result<bool>;

    fn to_delegate<M: Metadata>(self) -> IoDelegate<Self, M> { ... }
}
Expand description

Parity-specific rpc interface for operations altering the account-related settings.

Required methods

Sets account for signing consensus messages.

Provided methods

Create an IoDelegate, wiring rpc calls to the trait methods.

Implementors