From b1d3e95a0a9f51e81c82b58ff818a4c236e48e30 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 18 Sep 2012 15:24:31 -0400 Subject: [PATCH] When rejected TX relay due to lack of fees, log full txid --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 1479df671..fbaf05dfc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -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