diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-08-20 07:21:34 -0700 |
---|---|---|
committer | Jeff Garzik <jgarzik@exmulti.com> | 2012-08-20 07:21:34 -0700 |
commit | b3a570d158224e6ae6ee72fadd2bf947d7656f23 (patch) | |
tree | 3f8ff0549b3582773f76017cd5583ab8d35549a4 /src/main.h | |
parent | 89a7bd644f1b76d7bc94f6a79d7ec42320095f4c (diff) | |
parent | 05a85b2b38d516a8701f684fcd2ab99f3e5b462d (diff) |
Merge pull request #1641 from jgarzik/mempool
Add 'mempool' P2P command, and extend 'getdata' behavior
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h index 688af076b8..e88b83d46c 100644 --- a/src/main.h +++ b/src/main.h @@ -27,6 +27,7 @@ static const unsigned int MAX_BLOCK_SIZE = 1000000; static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2; static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50; static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100; +static const unsigned int MAX_INV_SZ = 50000; static const int64 MIN_TX_FEE = 50000; static const int64 MIN_RELAY_TX_FEE = 10000; static const int64 MAX_MONEY = 21000000 * COIN; |