diff options
| author | Jeff Garzik <[email protected]> | 2011-05-11 16:48:51 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-05-11 16:48:51 -0400 |
| commit | a630da64003ba1831006316a5f27b8a25b788ca2 (patch) | |
| tree | 44352034a85da48a49ec73a6ff2b94d31ba07222 /src/main.cpp | |
| parent | Merge pull request #150 from jgarzik/settxfee (diff) | |
| download | discoin-a630da64003ba1831006316a5f27b8a25b788ca2.tar.xz discoin-a630da64003ba1831006316a5f27b8a25b788ca2.zip | |
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 2cdde5b42..8d7640f64 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; |