| 1345 | |
| 1346 | template <class T> |
| 1347 | bool GenericTransactionSignatureChecker<T>::VerifySignature(const std::vector<unsigned char>& vchSig, const CPubKey& pubkey, const uint256& sighash) const |
| 1348 | { |
| 1349 | return pubkey.Verify(sighash, vchSig); |
| 1350 | } |
| 1351 | |
| 1352 | template <class T> |
| 1353 | bool GenericTransactionSignatureChecker<T>::CheckSig(const std::vector<unsigned char>& vchSigIn, const std::vector<unsigned char>& vchPubKey, const CScript& scriptCode, SigVersion sigversion, bool no_forkid) const |