diff options
| author | Ross Nicoll <[email protected]> | 2021-01-31 17:30:40 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-31 17:30:40 +0000 |
| commit | 4aafd6fabdf17dc4b7e7d227f432c0feed204099 (patch) | |
| tree | 3d30d30ecf33bc349653ece618f7bbd0e074280d /src | |
| parent | Merge pull request #1684 from eltociear/patch-1 (diff) | |
| parent | Default policy: reduce default mempool expiry time (diff) | |
| download | discoin-4aafd6fabdf17dc4b7e7d227f432c0feed204099.tar.xz discoin-4aafd6fabdf17dc4b7e7d227f432c0feed204099.zip | |
Merge pull request #1664 from patricklodder/1.14.3-mempool-expiry
Default policy: reduce default mempool expiry time
Diffstat (limited to 'src')
| -rw-r--r-- | src/validation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.h b/src/validation.h index fb4f3982e..1dd68b298 100644 --- a/src/validation.h +++ b/src/validation.h @@ -70,7 +70,7 @@ static const unsigned int DEFAULT_DESCENDANT_LIMIT = 25; /** Default for -limitdescendantsize, maximum kilobytes of in-mempool descendants */ static const unsigned int DEFAULT_DESCENDANT_SIZE_LIMIT = 101; /** Default for -mempoolexpiry, expiration time for mempool transactions in hours */ -static const unsigned int DEFAULT_MEMPOOL_EXPIRY = 336; +static const unsigned int DEFAULT_MEMPOOL_EXPIRY = 24; /** The maximum size of a blk?????.dat file (since 0.8) */ static const unsigned int MAX_BLOCKFILE_SIZE = 0x8000000; // 128 MiB /** The pre-allocation chunk size for blk?????.dat files (since 0.8) */ |