Reduce log messages of non-relayed transactions

This commit is contained in:
miketout
2018-10-29 04:01:55 -07:00
parent 135e0e1071
commit 1aa576ade2

View File

@@ -3074,7 +3074,7 @@ std::vector<uint256> CWallet::ResendWalletTransactionsBefore(int64_t nTime)
continue; continue;
if ( (wtx.nLockTime >= LOCKTIME_THRESHOLD && wtx.nLockTime < now-KOMODO_MAXMEMPOOLTIME) || wtx.hashBlock.IsNull() ) if ( (wtx.nLockTime >= LOCKTIME_THRESHOLD && wtx.nLockTime < now-KOMODO_MAXMEMPOOLTIME) || wtx.hashBlock.IsNull() )
{ {
LogPrintf("skip Relaying wtx %s nLockTime %u vs now.%u\n", wtx.GetHash().ToString(),(uint32_t)wtx.nLockTime,now); //LogPrintf("skip Relaying wtx %s nLockTime %u vs now.%u\n", wtx.GetHash().ToString(),(uint32_t)wtx.nLockTime,now);
//vwtxh.push_back(wtx.GetHash()); //vwtxh.push_back(wtx.GetHash());
continue; continue;
} }