From 6629184408976f076398120e53a9e7ae51030542 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 23 Jul 2018 20:30:29 -1100 Subject: [PATCH] -print --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 03a7af32a..592e8bd9b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4123,7 +4123,7 @@ bool CheckBlock(int32_t *futureblockp,int32_t height,CBlockIndex *pindex,const C if ( ASSETCHAINS_CC != 0 ) // CC contracts might refer to transactions in the current block, from a CC spend within the same block and out of order { CValidationState stateDummy; - fprintf(stderr,"put block's tx into mempool\n"); + //fprintf(stderr,"put block's tx into mempool\n"); for (int i = 0; i < block.vtx.size(); i++) { const CTransaction &tx = block.vtx[i]; @@ -4133,7 +4133,7 @@ bool CheckBlock(int32_t *futureblockp,int32_t height,CBlockIndex *pindex,const C continue; AcceptToMemoryPool(mempool, stateDummy, tx, false, NULL); } - fprintf(stderr,"done putting block's tx into mempool\n"); + //fprintf(stderr,"done putting block's tx into mempool\n"); } BOOST_FOREACH(const CTransaction& tx, block.vtx) {