Skip to content

Commit

Permalink
Change min relay transaction fee to 0.02 LTC
Browse files Browse the repository at this point in the history
  • Loading branch information
coblee committed Nov 17, 2011
1 parent b661930 commit f0f9b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,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 = 10000000; // Litecoin: minimum transaction fee of 0.1 LTC
static const int64 MIN_RELAY_TX_FEE = 10000000; // Litecoin: minimum relay transaction fee of 0.1 LTC
static const int64 MIN_RELAY_TX_FEE = 2000000; // Litecoin: minimum relay transaction fee of 0.02 LTC
static const int64 MAX_MONEY = 84000000 * COIN; // Litecoin: maximum of 840k coins
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
static const int COINBASE_MATURITY = 100;
Expand Down

0 comments on commit f0f9b11

Please sign in to comment.