Fix recently evicted list size

This commit is contained in:
Eirik Ogilvie-Wigley 2019-10-09 11:59:14 -06:00
parent a515b0057a
commit 30be750644
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
const size_t DEFAULT_MEMPOOL_TOTAL_WEIGHT_LIMIT = 80000000;
const int64_t DEFAULT_MEMPOOL_EVICTION_MEMORY_MINUTES = 60;
const size_t RECENTLY_EVICTED_SIZE = 10000;
const size_t RECENTLY_EVICTED_SIZE = 40000;
const uint64_t MIN_TX_WEIGHT = 4000;
const uint64_t LOW_FEE_PENALTY = 16000;