pub trait UpdateSigner {
    // Required method
    fn sign_update_hash(
        &self,
        hash_to_sign: &UpdateSignHash
    ) -> UpdateInstructionSignature;
}
Expand description

Implementors of this trait can sign update instructions.

Required Methods§

source

fn sign_update_hash( &self, hash_to_sign: &UpdateSignHash ) -> UpdateInstructionSignature

Sign the specified transaction hash, allocating and returning the signatures.

Implementations on Foreign Types§

source§

impl UpdateSigner for &BTreeMap<UpdateKeysIndex, UpdateKeyPair>

source§

impl UpdateSigner for &[(UpdateKeysIndex, UpdateKeyPair)]

Implementors§