diff options
| author | Pavel Janík <[email protected]> | 2016-11-10 08:00:05 +0100 |
|---|---|---|
| committer | Pavel Janík <[email protected]> | 2016-12-05 11:41:46 +0100 |
| commit | 9de90bb749926a51aac15d5998bff3e12425675e (patch) | |
| tree | c8f36dfda28f69e8f90ea8bffb668a927d031e8c /src/script/sigcache.h | |
| parent | Merge #9269: Align struct COrphan definition (diff) | |
| download | discoin-9de90bb749926a51aac15d5998bff3e12425675e.tar.xz discoin-9de90bb749926a51aac15d5998bff3e12425675e.zip | |
Do not shadow variables (gcc set)
Diffstat (limited to 'src/script/sigcache.h')
| -rw-r--r-- | src/script/sigcache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/sigcache.h b/src/script/sigcache.h index 44551ec2b..109500289 100644 --- a/src/script/sigcache.h +++ b/src/script/sigcache.h @@ -22,7 +22,7 @@ private: bool store; public: - CachingTransactionSignatureChecker(const CTransaction* txToIn, unsigned int nInIn, const CAmount& amount, bool storeIn, PrecomputedTransactionData& txdataIn) : TransactionSignatureChecker(txToIn, nInIn, amount, txdataIn), store(storeIn) {} + CachingTransactionSignatureChecker(const CTransaction* txToIn, unsigned int nInIn, const CAmount& amountIn, bool storeIn, PrecomputedTransactionData& txdataIn) : TransactionSignatureChecker(txToIn, nInIn, amountIn, txdataIn), store(storeIn) {} bool VerifySignature(const std::vector<unsigned char>& vchSig, const CPubKey& vchPubKey, const uint256& sighash) const; }; |