diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-12-15 09:17:25 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-01-05 15:45:34 +0100 |
| commit | 2eae3157f65197109d7745ea3926d086de812f7b (patch) | |
| tree | 821cd51543ee0d9fca91cb4ffb7261d47b3d68bc /src/script/interpreter.cpp | |
| parent | Replace GetLow64 with GetCheapHash (diff) | |
| download | discoin-2eae3157f65197109d7745ea3926d086de812f7b.tar.xz discoin-2eae3157f65197109d7745ea3926d086de812f7b.zip | |
Replace uint256(1) with static constant
SignatureHash and its test function SignatureHashOld
return uint256(1) as a special error signaling value.
Return a local static constant with the same value instead.
Diffstat (limited to 'src/script/interpreter.cpp')
| -rw-r--r-- | src/script/interpreter.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp index 80a32e78f..7f8b371d6 100644 --- a/src/script/interpreter.cpp +++ b/src/script/interpreter.cpp @@ -1030,16 +1030,17 @@ public: uint256 SignatureHash(const CScript& scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType) { + static const uint256 one("0000000000000000000000000000000000000000000000000000000000000001"); if (nIn >= txTo.vin.size()) { // nIn out of range - return 1; + return one; } // Check for invalid use of SIGHASH_SINGLE if ((nHashType & 0x1f) == SIGHASH_SINGLE) { if (nIn >= txTo.vout.size()) { // nOut out of range - return 1; + return one; } } |