diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-06 11:51:09 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-06 11:51:18 +0100 |
commit | a89b8371d6243242c2bb75a6005e7b4584ea6e6d (patch) | |
tree | 03636b2daccca221a553ef26b8f5b61fe6d7a5b9 /src/main.cpp | |
parent | 7b879d3493e5b51c60522f71657941bd62e29334 (diff) | |
parent | de236f57c68c2c29d148a2df9e019f431cee3cb7 (diff) |
Merge pull request #5564
de236f5 clarify obscure uses of EvalScript() (Pavel Vasin)
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index d115f763f6..dd25f649dc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -764,7 +764,7 @@ bool AreInputsStandard(const CTransaction& tx, const CCoinsViewCache& mapInputs) // IsStandard() will have already returned false // and this method isn't called. vector<vector<unsigned char> > stack; - if (!EvalScript(stack, tx.vin[i].scriptSig, false, BaseSignatureChecker())) + if (!EvalScript(stack, tx.vin[i].scriptSig, SCRIPT_VERIFY_NONE, BaseSignatureChecker())) return false; if (whichType == TX_SCRIPTHASH) |