@@ -27,21 +27,21 @@ class CRequestTracker;
2727class CNode ;
2828
2929// Testnet
30- // static const int LAST_POW_BLOCK = 8000; // testnet
31- // static const int64_t INITIAL_COIN_SUPPLY = 34145512; // testnet
32- // static const int TWO_PERCENT_INT_HEIGHT = LAST_POW_BLOCK + 10; // testnet
33- // static const int FORK_HEIGHT_1 = 8020;
30+ static const int LAST_POW_BLOCK = 8000 ; // testnet
31+ static const int64_t INITIAL_COIN_SUPPLY = 34145512 ; // testnet
32+ static const int TWO_PERCENT_INT_HEIGHT = LAST_POW_BLOCK + 10 ; // testnet
33+ static const int FORK_HEIGHT_1 = 8020 ;
3434
3535// Mainnet
36- static const int LAST_POW_BLOCK = 835213 ;
37- static const int64_t INITIAL_COIN_SUPPLY = 34145512 ; // Used in calculating interest rate (97.990085882B are out of circulation)
38- static const int TWO_PERCENT_INT_HEIGHT = LAST_POW_BLOCK + 1000 ;
39- static const int FORK_HEIGHT_1 = 1167000 ;
36+ // static const int LAST_POW_BLOCK = 835213;
37+ // static const int64_t INITIAL_COIN_SUPPLY = 34145512; // Used in calculating interest rate (97.990085882B are out of circulation)
38+ // static const int TWO_PERCENT_INT_HEIGHT = LAST_POW_BLOCK + 1000;
39+ // static const int FORK_HEIGHT_1 = 1167000;
4040
4141static const double COIN_SUPPLY_GROWTH_RATE = 1.35 ; // Circulation growth rate per block based on SLR grants of 710,000 / year
4242static const double TWO_PERCENT_INT = 2.0 ;
4343
44- static const unsigned int MAX_BLOCK_SIZE = 1000000 ;
44+ static const unsigned int MAX_BLOCK_SIZE = 2000000 ;
4545static const unsigned int MAX_BLOCK_SIZE_1M = 1000000 ;
4646static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/4 ;
4747static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50 ;
0 commit comments