aboutsummaryrefslogtreecommitdiff
path: root/src/script/interpreter.h
diff options
context:
space:
mode:
authorjtimon <[email protected]>2014-07-18 17:48:00 +0200
committerPieter Wuille <[email protected]>2014-09-12 20:04:31 +0200
commit2b23a87599b7d28e86ca193e7b52f429bcdf144f (patch)
tree79c03c4223657483d0fe64a89aead45982d01165 /src/script/interpreter.h
parentRemove CScriptCheck::nHashType (was always 0) (diff)
downloaddiscoin-2b23a87599b7d28e86ca193e7b52f429bcdf144f.tar.xz
discoin-2b23a87599b7d28e86ca193e7b52f429bcdf144f.zip
Don't pass nHashType to VerifyScript
Diffstat (limited to 'src/script/interpreter.h')
-rw-r--r--src/script/interpreter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/interpreter.h b/src/script/interpreter.h
index 0c6f8b9d1..ca57387a1 100644
--- a/src/script/interpreter.h
+++ b/src/script/interpreter.h
@@ -40,6 +40,6 @@ bool IsCanonicalSignature(const std::vector<unsigned char> &vchSig, unsigned int
uint256 SignatureHash(const CScript &scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType);
bool CheckSig(std::vector<unsigned char> vchSig, const std::vector<unsigned char> &vchPubKey, const CScript &scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType, int flags);
bool EvalScript(std::vector<std::vector<unsigned char> >& stack, const CScript& script, const CTransaction& txTo, unsigned int nIn, unsigned int flags, int nHashType);
-bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, const CTransaction& txTo, unsigned int nIn, unsigned int flags, int nHashType);
+bool VerifyScript(const CScript& scriptSig, const CScript& scriptPubKey, const CTransaction& txTo, unsigned int nIn, unsigned int flags);
#endif