aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorJeff Garzik <[email protected]>2011-05-11 18:16:36 -0700
committerJeff Garzik <[email protected]>2011-05-11 18:16:36 -0700
commit4b2e21e7eec875a3e1ff898c50f3b8d4d57bae58 (patch)
tree45ca3fe2689303d34fa7fbad91697e72a8cc43f0 /src/main.cpp
parentMerge pull request #150 from jgarzik/settxfee (diff)
parentDecrease minimum TX fee to 0.0005 BTC. (diff)
downloaddiscoin-4b2e21e7eec875a3e1ff898c50f3b8d4d57bae58.tar.xz
discoin-4b2e21e7eec875a3e1ff898c50f3b8d4d57bae58.zip
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.cpp2
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;