diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2011-05-11 18:16:36 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@exmulti.com> | 2011-05-11 18:16:36 -0700 |
commit | 4b2e21e7eec875a3e1ff898c50f3b8d4d57bae58 (patch) | |
tree | 45ca3fe2689303d34fa7fbad91697e72a8cc43f0 /src/main.cpp | |
parent | 04a667b0767a6c3fff8d24be784ccaec9edf712b (diff) | |
parent | 2a2487514a818a5de43c99e149efae991d300ed9 (diff) |
Merge pull request #218 from jgarzik/fee-update
Update TX fee to 0.0005 BTC
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 2cdde5b42b..8d7640f640 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -741,7 +741,7 @@ bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMi // Continuously rate-limit free transactions // This mitigates 'penny-flooding' -- sending thousands of free transactions just to // be annoying or make other's transactions take longer to confirm. - if (nFees < CENT) + if (nFees < MIN_TX_FEE) { static CCriticalSection cs; static double dFreeCount; |