pub trait NetworkSigner {
    fn sign_with_local_identity(
        &self,
        msg: impl AsRef<[u8]>
    ) -> Result<Signature, SigningError>; }
Expand description

Signer with network identity

Required Methods§

Signs the message with the KeyPair that defines the local PeerId.

Implementations on Foreign Types§

Implementors§