aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2012-09-18 15:24:31 -0400
committerJeff Garzik <jgarzik@redhat.com>2012-09-18 15:24:31 -0400
commitb1d3e95a0a9f51e81c82b58ff818a4c236e48e30 (patch)
treef3fb19f7640edf64e2f27ddc8ee1c4b861fe0f70
parentea0796bde3483189643894c6a47d31c0dba0c486 (diff)
downloadbitcoin-b1d3e95a0a9f51e81c82b58ff818a4c236e48e30.tar.xz
When rejected TX relay due to lack of fees, log full txid
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 1479df6712..fbaf05dfc7 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