diff --git a/src/script/interpreter.h b/src/script/interpreter.h --- a/src/script/interpreter.h +++ b/src/script/interpreter.h @@ -33,7 +33,7 @@ const CPubKey &vchPubKey, const uint256 &sighash) const; - virtual bool CheckSig(const std::vector &scriptSig, + virtual bool CheckSig(const std::vector &vchSigIn, const std::vector &vchPubKey, const CScript &scriptCode, uint32_t flags) const { return false; @@ -67,7 +67,7 @@ : txTo(txToIn), nIn(nInIn), amount(amountIn), txdata(&txdataIn) {} // The overriden functions are now final. - bool CheckSig(const std::vector &scriptSig, + bool CheckSig(const std::vector &vchSigIn, const std::vector &vchPubKey, const CScript &scriptCode, uint32_t flags) const final override;