Lower minimum relay TX fee to 0.0001 (from 0.0005) BTC.
authorJeff Garzik <jeff@garzik.org>
Fri, 10 Jun 2011 06:07:13 +0000 (02:07 -0400)
committerJeff Garzik <jgarzik@pobox.com>
Fri, 10 Jun 2011 06:07:13 +0000 (02:07 -0400)
src/main.h

index b736644..8087df3 100644 (file)
@@ -30,7 +30,7 @@ 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 = 50000;
-static const int64 MIN_RELAY_TX_FEE = 50000;
+static const int64 MIN_RELAY_TX_FEE = 10000;
 static const int64 MAX_MONEY = 21000000 * COIN;
 inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
 static const int COINBASE_MATURITY = 100;