diff options
author | Suhas Daftuar <sdaftuar@gmail.com> | 2018-01-19 10:38:58 -0500 |
---|---|---|
committer | Suhas Daftuar <sdaftuar@gmail.com> | 2018-01-25 18:02:24 -0500 |
commit | e868b22917aee4c888f843bd86a2bf8ea29530eb (patch) | |
tree | c559264548ee7734ad583af45329688fbf88e21e /src/policy/fees.h | |
parent | 09754063e0605429680f4c58a85967777ad87cc1 (diff) |
fee estimator: avoid sorting mempool on shutdown
Diffstat (limited to 'src/policy/fees.h')
-rw-r--r-- | src/policy/fees.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/fees.h b/src/policy/fees.h index 96a842b7a1..5f69e989c1 100644 --- a/src/policy/fees.h +++ b/src/policy/fees.h @@ -223,7 +223,7 @@ public: bool Read(CAutoFile& filein); /** Empty mempool transactions on shutdown to record failure to confirm for txs still in mempool */ - void FlushUnconfirmed(CTxMemPool& pool); + void FlushUnconfirmed(); /** Calculation of highest target that estimates are tracked for */ unsigned int HighestTargetTracked(FeeEstimateHorizon horizon) const; |