aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2011-06-05 14:28:14 -0400
committerJeff Garzik <jgarzik@pobox.com>2011-06-05 14:28:14 -0400
commit352b4ea5b924412f3485290123fdf538cfdd8aa8 (patch)
tree52cd15cd773886aa9f8c4a68e37bbb05d6e64e47 /src/main.h
parent6f07e22210569da89ae230499efd06689ab2a83c (diff)
downloadbitcoin-352b4ea5b924412f3485290123fdf538cfdd8aa8.tar.xz
Reduce minimum TX fee for new transactions, to 0.0005.
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index 8d9b39f718..b7366445a7 100644
--- a/src/main.h
+++ b/src/main.h
@@ -29,7 +29,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 MIN_RELAY_TX_FEE = 50000;
static const int64 MAX_MONEY = 21000000 * COIN;
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }