diff options
author | Pavel JanÃk <Pavel@Janik.cz> | 2015-01-08 11:44:25 +0100 |
---|---|---|
committer | Cory Fields <cory-nospam-@coryfields.com> | 2015-01-31 17:38:28 -0500 |
commit | 5262fde0ecd19f1febbfcd488f2be41c5dffd047 (patch) | |
tree | 413401ca7111906838b0f5f5d0c0604bcce52d19 /src/test/sighash_tests.cpp | |
parent | 3800135ad382a0a980eb20bad8bacbbf206f8cea (diff) |
Remove whitespaces before double colon in errors and logs
Diffstat (limited to 'src/test/sighash_tests.cpp')
-rw-r--r-- | src/test/sighash_tests.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/sighash_tests.cpp b/src/test/sighash_tests.cpp index 662f765a0b..ea41dbcde2 100644 --- a/src/test/sighash_tests.cpp +++ b/src/test/sighash_tests.cpp @@ -27,7 +27,7 @@ uint256 static SignatureHashOld(CScript scriptCode, const CTransaction& txTo, un static const uint256 one(uint256S("0000000000000000000000000000000000000000000000000000000000000001")); if (nIn >= txTo.vin.size()) { - printf("ERROR: SignatureHash() : nIn=%d out of range\n", nIn); + printf("ERROR: SignatureHash(): nIn=%d out of range\n", nIn); return one; } CMutableTransaction txTmp(txTo); @@ -58,7 +58,7 @@ uint256 static SignatureHashOld(CScript scriptCode, const CTransaction& txTo, un unsigned int nOut = nIn; if (nOut >= txTmp.vout.size()) { - printf("ERROR: SignatureHash() : nOut=%d out of range\n", nOut); + printf("ERROR: SignatureHash(): nOut=%d out of range\n", nOut); return one; } txTmp.vout.resize(nOut+1); |