Skip to content

Commit

Permalink
fixed max money.
Browse files Browse the repository at this point in the history
  • Loading branch information
Centurion committed Feb 28, 2017
1 parent 9c6d167 commit d60743c
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 @@ -36,7 +36,7 @@ static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
static const unsigned int MAX_INV_SZ = 50000;
static const int64_t MIN_TX_FEE = 1000;
static const int64_t MIN_RELAY_TX_FEE = MIN_TX_FEE;
static const int64_t MAX_MONEY = 20000000000 * COIN;
static const int64_t MAX_MONEY = 250000000 * COIN;
static const int64_t COIN_YEAR_REWARD = 5 * CENT; // 3% per year
static const int64_t MAX_MINT_PROOF_OF_STAKE = 3 * COIN; // 3% annual interest
static const int MODIFIER_INTERVAL_SWITCH = 2000;
Expand Down

0 comments on commit d60743c

Please sign in to comment.