[][src]Trait tendermint::amino_types::signature::SignableMsg

pub trait SignableMsg {
    fn sign_bytes<B: BufMut>(
        &self,
        chain_id: Id,
        sign_bytes: &mut B
    ) -> Result<bool, EncodeError>;
fn set_signature(&mut self, sig: &Signature);
fn validate(&self) -> Result<(), ValidationError>; }

Amino messages which are signable within a Tendermint network

Required Methods

Sign this message as bytes

Set the Ed25519 signature on the underlying message

Implementors

impl SignableMsg for SignProposalRequest
[src]

impl SignableMsg for SignVoteRequest
[src]