pub trait VerifyECDSASignature {
    // Required method
    fn verify_ecdsa_signature(
        &self,
        vch_sig: &Vec<u8>,
        vch_pub_key: &PubKey,
        sighash: &u256
    ) -> bool;
}

Required Methods§

source

fn verify_ecdsa_signature( &self, vch_sig: &Vec<u8>, vch_pub_key: &PubKey, sighash: &u256 ) -> bool

Implementors§