diff options
| author | Jeff Garzik <[email protected]> | 2012-07-31 17:42:35 -0400 |
|---|---|---|
| committer | Jeff Garzik <[email protected]> | 2012-07-31 17:42:35 -0400 |
| commit | 05a85b2b38d516a8701f684fcd2ab99f3e5b462d (patch) | |
| tree | 6d03e0f22dd6c299e2a11e8ad0e8b1daa5d1c1f8 /src/main.h | |
| parent | Merge pull request #1635 from Diapolo/update_helpMessage (diff) | |
| download | discoin-05a85b2b38d516a8701f684fcd2ab99f3e5b462d.tar.xz discoin-05a85b2b38d516a8701f684fcd2ab99f3e5b462d.zip | |
Add 'mempool' P2P command, and extend 'getdata' behavior
to permit downloading of mempool transactions from the remote peer.
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 301badcca..62187e428 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; |