Browse Source

Increase block size limit to 2MB.

pull/145/head
Sean Bowe 8 years ago
parent
commit
23c6d3aba8
  1. 2
      src/consensus/consensus.h

2
src/consensus/consensus.h

@ -7,7 +7,7 @@
#define BITCOIN_CONSENSUS_CONSENSUS_H
/** The maximum allowed size for a serialized block, in bytes (network rule) */
static const unsigned int MAX_BLOCK_SIZE = 1000000;
static const unsigned int MAX_BLOCK_SIZE = 2000000;
/** The maximum allowed number of signature check operations in a block (network rule) */
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
/** Coinbase transaction outputs can only be spent after this number of new blocks (network rule) */

Loading…
Cancel
Save