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 4fae301 commit 5b8a86dCopy full SHA for 5b8a86d
src/qt/mempoolfeetables.cpp
@@ -53,7 +53,7 @@ QVariant MempoolFeeTableModel::data(const QModelIndex& index, int role) const
53
if (role == Qt::DisplayRole) {
54
switch (column) {
55
case FeeRange:
56
- return QString("%1-%2").arg(fee_info->fee_from - 1).arg(fee_info->fee_to - 1);
+ return QString("%1-%2").arg(fee_info->fee_from).arg(fee_info->fee_to);
57
case TxCount:
58
return (qint64)fee_info->tx_count;
59
case TotalSize:
0 commit comments