Skip to content

Commit 0abc588

Browse files
[tests] Remove printf(...)
1 parent f259263 commit 0abc588

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
@@ -30,7 +30,6 @@ uint256 static SignatureHashOld(CScript scriptCode, const CTransaction& txTo, un
3030
static const uint256 one(uint256S("0000000000000000000000000000000000000000000000000000000000000001"));
3131
if (nIn >= txTo.vin.size())
3232
{
33-
printf("ERROR: SignatureHash(): nIn=%d out of range\n", nIn);
3433
return one;
3534
}
3635
CMutableTransaction txTmp(txTo);
@@ -61,7 +60,6 @@ uint256 static SignatureHashOld(CScript scriptCode, const CTransaction& txTo, un
6160
unsigned int nOut = nIn;
6261
if (nOut >= txTmp.vout.size())
6362
{
64-
printf("ERROR: SignatureHash(): nOut=%d out of range\n", nOut);
6563
return one;
6664
}
6765
txTmp.vout.resize(nOut+1);

0 commit comments

Comments
 (0)