diff options
| author | Pieter Wuille <[email protected]> | 2015-11-08 01:16:45 +0100 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-06-22 15:42:59 +0200 |
| commit | 449f9b8debcceb61a92043bc7031528a53627c47 (patch) | |
| tree | c55434295cae8c338fe8ec128c325fa254303ecb /src/script/sign.cpp | |
| parent | BIP144: Serialization, hashes, relay (sender side) (diff) | |
| download | discoin-449f9b8debcceb61a92043bc7031528a53627c47.tar.xz discoin-449f9b8debcceb61a92043bc7031528a53627c47.zip | |
BIP141: Witness program
Diffstat (limited to 'src/script/sign.cpp')
| -rw-r--r-- | src/script/sign.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/sign.cpp b/src/script/sign.cpp index 2f4111f78..37b702de1 100644 --- a/src/script/sign.cpp +++ b/src/script/sign.cpp @@ -123,7 +123,7 @@ bool ProduceSignature(const BaseSignatureCreator& creator, const CScript& fromPu } // Test solution - return VerifyScript(scriptSig, fromPubKey, STANDARD_SCRIPT_VERIFY_FLAGS, creator.Checker()); + return VerifyScript(scriptSig, fromPubKey, NULL, STANDARD_SCRIPT_VERIFY_FLAGS, creator.Checker()); } bool SignSignature(const CKeyStore &keystore, const CScript& fromPubKey, CMutableTransaction& txTo, unsigned int nIn, int nHashType) |