Mercurial > hg > bitcoin
changeset 674:43b39e65c604 draft
Lower minimum relay TX fee to 0.0001 (from 0.0005) BTC.
author | Jeff Garzik <jeff@garzik.org> |
---|---|
date | Fri, 10 Jun 2011 02:07:13 -0400 |
parents | cbd2f4849f44 |
children | 8fd3fa66c483 |
files | src/main.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main.h +++ b/src/main.h @@ -30,7 +30,7 @@ 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;