aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2011-05-11 16:50:09 -0400
committerJeff Garzik <jgarzik@pobox.com>2011-05-11 16:50:09 -0400
commit2a2487514a818a5de43c99e149efae991d300ed9 (patch)
tree45ca3fe2689303d34fa7fbad91697e72a8cc43f0
parenta630da64003ba1831006316a5f27b8a25b788ca2 (diff)
downloadbitcoin-2a2487514a818a5de43c99e149efae991d300ed9.tar.xz
Decrease minimum TX fee to 0.0005 BTC.
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index a575f763a7..d1201e6492 100644
--- a/src/main.h
+++ b/src/main.h
@@ -19,7 +19,7 @@ static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
static const int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
static const int64 COIN = 100000000;
static const int64 CENT = 1000000;
-static const int64 MIN_TX_FEE = CENT;
+static const int64 MIN_TX_FEE = 50000;
static const int64 MAX_MONEY = 21000000 * COIN;
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
static const int COINBASE_MATURITY = 100;