7 #ifndef BITCOIN_CONSENSUS_CONSENSUS_H
8 #define BITCOIN_CONSENSUS_CONSENSUS_H
13 static const unsigned int MAX_BLOCK_SIZE_CURRENT = 2000000;
14 static const unsigned int MAX_BLOCK_SIZE_LEGACY = 1000000;
17 static const unsigned int MAX_BLOCK_SIGOPS_CURRENT = MAX_BLOCK_SIZE_CURRENT / 50;
18 static const unsigned int MAX_BLOCK_SIGOPS_LEGACY = MAX_BLOCK_SIZE_LEGACY / 50;
21 static const unsigned int MAX_TX_SIGOPS_CURRENT = MAX_BLOCK_SIGOPS_CURRENT / 5;
22 static const unsigned int MAX_TX_SIGOPS_LEGACY = MAX_BLOCK_SIGOPS_LEGACY / 5;
33 #endif // BITCOIN_CONSENSUS_CONSENSUS_H