Skip to content

Commit e24b878

Browse files
committed
one more test
1 parent 8a33390 commit e24b878

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/main.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,21 +27,21 @@ class CRequestTracker;
2727
class 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

4141
static const double COIN_SUPPLY_GROWTH_RATE = 1.35; // Circulation growth rate per block based on SLR grants of 710,000 / year
4242
static 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;
4545
static const unsigned int MAX_BLOCK_SIZE_1M = 1000000;
4646
static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/4;
4747
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;

0 commit comments

Comments
 (0)