aboutsummaryrefslogtreecommitdiff
path: root/src/script/sign.cpp
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2014-09-10 14:42:22 +0200
committerPieter Wuille <pieter.wuille@gmail.com>2014-10-02 20:26:16 +0200
commitc7829ea797c840dda7888ee860a50b7a3308069d (patch)
tree55eafd1b6fef2ba1a5d3aa1aec9e0c6165091893 /src/script/sign.cpp
parent6faee7942671141649b74e50908cb99cabc840e5 (diff)
downloadbitcoin-c7829ea797c840dda7888ee860a50b7a3308069d.tar.xz
Abstract out SignatureChecker
Diffstat (limited to 'src/script/sign.cpp')
-rw-r--r--src/script/sign.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/sign.cpp b/src/script/sign.cpp
index 8abd8d221d..a17fb58787 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 (CheckSig(sig, pubkey, scriptPubKey, txTo, nIn, 0))
+ if (SignatureChecker(txTo, nIn).CheckSig(sig, pubkey, scriptPubKey, 0))
{
sigs[pubkey] = sig;
break;