diff options
| author | Alex Morcos <[email protected]> | 2015-11-16 15:21:51 -0500 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2015-11-16 15:33:06 -0500 |
| commit | 63030514701828a06040413837f5eced9deeee03 (patch) | |
| tree | 62be88c1ff41a297a3e1b58ff5ccd68789cb699c /src/policy/policy.h | |
| parent | Increase success threshold for fee estimation to 95% (diff) | |
| download | discoin-63030514701828a06040413837f5eced9deeee03.tar.xz discoin-63030514701828a06040413837f5eced9deeee03.zip | |
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 f269e8d47..c8d2c1a92 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 |