diff options
author | Jeff Garzik <jeff@garzik.org> | 2011-05-11 16:48:51 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2011-05-11 16:48:51 -0400 |
commit | a630da64003ba1831006316a5f27b8a25b788ca2 (patch) | |
tree | 44352034a85da48a49ec73a6ff2b94d31ba07222 /src/main.cpp | |
parent | 04a667b0767a6c3fff8d24be784ccaec9edf712b (diff) |
Replace CENT with new constant MIN_TX_FEE, where appropriate.
MIN_TX_FEE==CENT remains true (until next commit).
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; |