diff options
| author | Pieter Wuille <[email protected]> | 2014-09-14 04:48:32 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2014-10-02 20:26:58 +0200 |
| commit | e790c370b5971dd096d1bbfd55960ccf71b7594a (patch) | |
| tree | de37518b3fa3c9fe6d3c6b70759f05dde90134fb /src/script/sign.cpp | |
| parent | Make signature cache optional (diff) | |
| download | discoin-e790c370b5971dd096d1bbfd55960ccf71b7594a.tar.xz discoin-e790c370b5971dd096d1bbfd55960ccf71b7594a.zip | |
Replace SCRIPT_VERIFY_NOCACHE by flag directly to checker
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 a524ac8e5..da77e7d1f 100644 --- a/src/script/sign.cpp +++ b/src/script/sign.cpp @@ -174,7 +174,7 @@ static CScript CombineMultisig(CScript scriptPubKey, const CMutableTransaction& if (sigs.count(pubkey)) continue; // Already got a sig for this pubkey - if (SignatureChecker(txTo, nIn).CheckSig(sig, pubkey, scriptPubKey, 0)) + if (SignatureChecker(txTo, nIn).CheckSig(sig, pubkey, scriptPubKey)) { sigs[pubkey] = sig; break; |