static const unsigned int MAX_BLOCK_SIZE = 1000000;
Maximum size of a block in bytes, as specified by network rules.
static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
Maximum size of a block that will be generated.
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
Maximum number of signature checking operations in a block, as specified by network rules
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
Maximum number of orphan transactions kept in memory; old ones are deleted when this number is exceeded
static const unsigned int MAX_INV_SZ = 50000;
Maximum number of entries in an "inv" protocol message
static const unsigned int MAX_BLOCKFILE_SIZE = 0x8000000; // 128 MiB
Maximum size of a block file (new in 0.8 )
static const unsigned int BLOCKFILE_CHUNK_SIZE = 0x1000000; // 16 MiB
Size of preallocation chunks in block files (new in 0.8 )
static const unsigned int UNDOFILE_CHUNK_SIZE = 0x100000; // 1 MiB
Size of preallocation chunks in undo files (new in 0.8 )
static const unsigned int MEMPOOL_HEIGHT = 0x7FFFFFFF;
Special height in CCoins to mark origin is mempool (memory only) (new in 0.8 )
Fees below this (in satoshi) are considered zero fee for purposes of block/tx creation
static const int64 MIN_TX_FEE = 50000;
static const int64 MIN_RELAY_TX_FEE = 10000;
Fees below this (in satoshi) are considered zero fee for purposes of relaying
static const int64 MAX_MONEY = 21000000 * COIN;
Maximum amount (in satoshi) allowed anywhere. COIN is equal to 10^8
static const int COINBASE_MATURITY = 100;
Coinbase transactions cannot be spent before this number of confirms