]> Git Repo - VerusCoin.git/commitdiff
When rejected TX relay due to lack of fees, log full txid
authorJeff Garzik <[email protected]>
Tue, 18 Sep 2012 19:24:31 +0000 (15:24 -0400)
committerJeff Garzik <[email protected]>
Tue, 18 Sep 2012 19:24:31 +0000 (15:24 -0400)
src/main.cpp

index 1479df6712991c40ae29b5616c545a9033f68ab7..fbaf05dfc7bbf5470b2b6c2d8c74b0c3589fdaf5 100644 (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
This page took 0.025373 seconds and 4 git commands to generate.