pub trait VerifySchnorrSignature {
    fn verify_schnorr_signature(
        &self,
        sig: &[u8],
        pubkey: &XOnlyPubKey,
        sighash: &u256
    ) -> bool; }

Required Methods§

Implementors§