diff options
author | Alex Morcos <morcos@chaincode.com> | 2015-11-16 15:21:51 -0500 |
---|---|---|
committer | Alex Morcos <morcos@chaincode.com> | 2015-11-16 15:33:06 -0500 |
commit | 63030514701828a06040413837f5eced9deeee03 (patch) | |
tree | 62be88c1ff41a297a3e1b58ff5ccd68789cb699c /src/policy/policy.h | |
parent | f22ac4a22c570921f1c2be121e6744a1564b2ce7 (diff) |
EstimateSmart functions consider mempool min fee
Diffstat (limited to 'src/policy/policy.h')
-rw-r--r-- | src/policy/policy.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/policy/policy.h b/src/policy/policy.h index f269e8d476..c8d2c1a924 100644 --- a/src/policy/policy.h +++ b/src/policy/policy.h @@ -25,6 +25,8 @@ static const unsigned int MAX_STANDARD_TX_SIZE = 100000; static const unsigned int MAX_P2SH_SIGOPS = 15; /** The maximum number of sigops we're willing to relay/mine in a single tx */ static const unsigned int MAX_STANDARD_TX_SIGOPS = MAX_BLOCK_SIGOPS/5; +/** Default for -maxmempool, maximum megabytes of mempool memory usage */ +static const unsigned int DEFAULT_MAX_MEMPOOL_SIZE = 300; /** * Standard script verification flags that standard transactions will comply * with. However scripts violating these flags may still be present in valid |