When rejected TX relay due to lack of fees, log full txid

This commit is contained in:
Jeff Garzik 2012-09-18 15:24:31 -04:00 committed by Jeff Garzik
parent ea0796bde3
commit b1d3e95a0a
1 changed files with 1 additions and 1 deletions

View File

@ -615,7 +615,7 @@ bool CTxMemPool::accept(CTxDB& txdb, CTransaction &tx, bool fCheckInputs,
int64 txMinFee = tx.GetMinFee(1000, true, GMF_RELAY);
if (nFees < txMinFee)
return error("CTxMemPool::accept() : not enough fees %s, %"PRI64d" < %"PRI64d,
hash.ToString().substr(0,10).c_str(),
hash.ToString().c_str(),
nFees, txMinFee);
// Continuously rate-limit free transactions