Skip to content

Commit 6c2d81f

Browse files
committed
Merge #10524: [tests] Remove printf(...)
0abc588 [tests] Remove printf(...) (practicalswift) Tree-SHA512: a56fa1edce050f5a44a53842223fc99e4e8ade413047e04f2064faeb5c4a418864a94471853d5c26a20608d1dcc18b9226d7fe15172f79a66cc5cf6e1443f7e9
2 parents e801084 + 0abc588 commit 6c2d81f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/test/sighash_tests.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ uint256 static SignatureHashOld(CScript scriptCode, const CTransaction& txTo, un
2929
static const uint256 one(uint256S("0000000000000000000000000000000000000000000000000000000000000001"));
3030
if (nIn >= txTo.vin.size())
3131
{
32-
printf("ERROR: SignatureHash(): nIn=%d out of range\n", nIn);
3332
return one;
3433
}
3534
CMutableTransaction txTmp(txTo);
@@ -60,7 +59,6 @@ uint256 static SignatureHashOld(CScript scriptCode, const CTransaction& txTo, un
6059
unsigned int nOut = nIn;
6160
if (nOut >= txTmp.vout.size())
6261
{
63-
printf("ERROR: SignatureHash(): nOut=%d out of range\n", nOut);
6462
return one;
6563
}
6664
txTmp.vout.resize(nOut+1);

0 commit comments

Comments
 (0)