We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c74d191 commit 3cf955dCopy full SHA for 3cf955d
src/qt/mempoolfeetables.cpp
@@ -184,6 +184,10 @@ void MempoolFeeTableModel::updateModel(const std::vector<interfaces::mempool_fee
184
m_fee_data.clear();
185
m_fee_data.reserve(fee_info.size());
186
for (const auto& entry : fee_info) {
187
+ // Hide fee levels above the 1699-1999 sat/vB range if they have 0 transactions
188
+ if (entry.fee_from >= 2000 && entry.tx_count == 0) {
189
+ continue;
190
+ }
191
m_fee_data.append(entry);
192
}
193
if (m_sort_column != -1) {
0 commit comments