< CubicEarth> shesek: sipa: Doesn't it also write to disk if the db cache fills up?
< bitcoin-git> [bitcoin] MarcoFalke pushed 2 commits to master: https://github.com/bitcoin/bitcoin/compare/8ab4f282c06d...76e2cded477b
< bitcoin-git> bitcoin/master ae7faf2 Kristaps Kaupe: Exceptions should be caught by reference, not by value.
< bitcoin-git> bitcoin/master 76e2cde MarcoFalke: Merge #16095: Catch by reference not value in wallettool
< bitcoin-git> [bitcoin] MarcoFalke merged pull request #16095: Catch by reference not value in wallettool (master...catch-by-ref-wallettool) https://github.com/bitcoin/bitcoin/pull/16095
< bitcoin-git> [bitcoin] promag opened pull request #16102: Improve base_blob<BITS>::IsNull() (master...2010-05-baseblob-isnull) https://github.com/bitcoin/bitcoin/pull/16102
< phantomcircuit> shesek, the fee estimates are based on the mempool
< phantomcircuit> so why?
< bitcoin-git> [bitcoin] promag opened pull request #16103: Remove unnecessary call to CTransaction::IsCoinBase() (master...2015-05-avoid-iscoinbase) https://github.com/bitcoin/bitcoin/pull/16103
< bitcoin-git> [bitcoin] jacekdalecki84 opened pull request #16104: 0.14 (0.15...0.14) https://github.com/bitcoin/bitcoin/pull/16104
< bitcoin-git> [bitcoin] jacekdalecki84 opened pull request #16105: Add files via upload (master...master) https://github.com/bitcoin/bitcoin/pull/16105
< bitcoin-git> [bitcoin] sipa closed pull request #16105: Add files via upload (master...master) https://github.com/bitcoin/bitcoin/pull/16105
< bitcoin-git> [bitcoin] sipa closed pull request #16104: 0.14 (0.15...0.14) https://github.com/bitcoin/bitcoin/pull/16104
< bitcoin-git> [bitcoin] promag opened pull request #16106: gui: Sort wallets in open wallet menu (master...2019-05-followup-15957) https://github.com/bitcoin/bitcoin/pull/16106
< shesek> phantomcircuit, I was under the impression that fee_estimates.dat has additional data that improves the fee estimates accuracy. why keep it around between restarts otherwise?
< sipa> they are
< luke-jr> shesek: it's not the mempool alone that determines fee estimates
< luke-jr> shesek: more like studying the pattern of transactions that *leave* the mempool as new blocks come in
< luke-jr> fee_estimates.dat keeps track of that
< sipa> the estimates are based on statistics of the time between entering the mempool and being mined
< phantomcircuit> sipa, oh
< phantomcircuit> oops