diff options
| author | Jeff Garzik <[email protected]> | 2011-06-10 02:07:13 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2011-06-10 02:07:13 -0400 |
| commit | 6de1326ba4a35ab781107a8b56f74affaed87cba (patch) | |
| tree | 59efe2cfba2fd272c6e170c55b9d731480985195 /src | |
| parent | Merge pull request #304 from TheBlueMatt/cpufix (diff) | |
| download | discoin-6de1326ba4a35ab781107a8b56f74affaed87cba.tar.xz discoin-6de1326ba4a35ab781107a8b56f74affaed87cba.zip | |
Lower minimum relay TX fee to 0.0001 (from 0.0005) BTC.
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h index b7366445a..8087df33a 100644 --- a/src/main.h +++ b/src/main.h @@ -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; |