> fee is not calculated based on what you have on your mempool that's not correct. even core is using more advanced methods to estimate fee. its just an argument I'm sorry, you must be joking In core, fee estimates are calculated entirely from the mempool. This isn't even up for debate, it's literally in the code. - The `TxConfirmStats` class ([here]( builds buckets of mempool transactions based on fee rates and then analyzes how long they take to be mined. - If you unravel `TxConfirmStats::EstimateMedianVal` ([here]( the code scans buckets of stored feerates built **from the mempool** and gives you the median feerate for the bucket that most closely matches your confirmation criterion. It's the same for other estimators as well. We rely primarily on the mempool.space estimator in the `bria` engine we use for Blink ([here]( as it's the most reliable we've found from years of observed transaction activity. And if you go to the mempool.space repo and look at how they do fees, `getRecommendedFee` is called ([here]( which if you follow the code uses mempool transactions and projected mempool blocks to estimate fees. I think this is the issue lots of us are having with this "debate". Lots of things are being said that aren't even subjective, just objectively wrong.

Replies (1)

> I'm sorry, you must be joking > > In core, fee estimates are calculated entirely from the mempool. This isn't even up for debate, it's literally in the code. No, they are not "entirely" based on mempools. That is objectively wrong. In the context of "does different mempools breaks 'predictable fee estimates'. " Mempool has effect on the fee yes, but that fee is calculated mostly based on block-history not current mempool. Mempool is not significant that much until congestion. Even in those cases there is no guarantee that mempools will be completely different. Still not a good argument to make all of mempools same. And call it decentralized. it's better if bitcoin software maximizes decentralization on the base layer. nothing else, sacrifice every other thing. but again it seems many have different interpretations of decentralization