diff options
| author | Jeff Garzik <[email protected]> | 2012-09-18 15:24:31 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-09-18 15:24:31 -0400 |
| commit | b1d3e95a0a9f51e81c82b58ff818a4c236e48e30 (patch) | |
| tree | f3fb19f7640edf64e2f27ddc8ee1c4b861fe0f70 /src/main.cpp | |
| parent | Trim trailing whitespace for src/*.{h,cpp} (diff) | |
| download | discoin-b1d3e95a0a9f51e81c82b58ff818a4c236e48e30.tar.xz discoin-b1d3e95a0a9f51e81c82b58ff818a4c236e48e30.zip | |
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 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 |