| 2981 | |
| 2982 | template <class T> |
| 2983 | bool GenericTransactionSignatureChecker<T>::VerifySchnorrSignature(Span<const unsigned char> sig, const XOnlyPubKey& pubkey, const uint256& sighash) const |
| 2984 | { |
| 2985 | return pubkey.VerifySchnorr(sighash, sig); |
| 2986 | } |
| 2987 | |
| 2988 | template <class T> |
| 2989 | bool GenericTransactionSignatureChecker<T>::CheckECDSASignature(const std::vector<unsigned char>& vchSigIn, const std::vector<unsigned char>& vchPubKey, const CScript& scriptCode, SigVersion sigversion, unsigned int flags) const |
nothing calls this directly
no test coverage detected