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

Required Methods§

Implementors§