diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-09-18 15:24:31 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-09-18 15:24:31 -0400 |
commit | b1d3e95a0a9f51e81c82b58ff818a4c236e48e30 (patch) | |
tree | f3fb19f7640edf64e2f27ddc8ee1c4b861fe0f70 /src/main.cpp | |
parent | ea0796bde3483189643894c6a47d31c0dba0c486 (diff) |
When rejected TX relay due to lack of fees, log full txid
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
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 |