diff options
| author | Pieter Wuille <[email protected]> | 2012-09-08 17:33:10 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2013-01-08 01:49:14 +0100 |
| commit | f1136200a67fc1df894d45fba51b40f748e0b889 (patch) | |
| tree | 1c867524f6e9864f17024b817b68cbe8be78adf4 /src/script.cpp | |
| parent | Merge pull request #2153 from Diapolo/overviewpage (diff) | |
| download | discoin-f1136200a67fc1df894d45fba51b40f748e0b889.tar.xz discoin-f1136200a67fc1df894d45fba51b40f748e0b889.zip | |
Move VerifySignature to main
Diffstat (limited to 'src/script.cpp')
| -rw-r--r-- | src/script.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/script.cpp b/src/script.cpp index f65508aac..52a8f2c11 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1723,17 +1723,6 @@ bool SignSignature(const CKeyStore &keystore, const CTransaction& txFrom, CTrans return SignSignature(keystore, txout.scriptPubKey, txTo, nIn, nHashType); } -bool VerifySignature(const CCoins& txFrom, const CTransaction& txTo, unsigned int nIn, unsigned int flags, int nHashType) -{ - assert(nIn < txTo.vin.size()); - const CTxIn& txin = txTo.vin[nIn]; - if (txin.prevout.n >= txFrom.vout.size()) - return false; - const CTxOut& txout = txFrom.vout[txin.prevout.n]; - - return VerifyScript(txin.scriptSig, txout.scriptPubKey, txTo, nIn, flags, nHashType); -} - static CScript PushAll(const vector<valtype>& values) { CScript result; |