Skip to content

Commit 5b8a86d

Browse files
committed
src/qt/mempoolfeetables.cpp\:fix fee range\:off by one
1 parent 4fae301 commit 5b8a86d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qt/mempoolfeetables.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ QVariant MempoolFeeTableModel::data(const QModelIndex& index, int role) const
5353
if (role == Qt::DisplayRole) {
5454
switch (column) {
5555
case FeeRange:
56-
return QString("%1-%2").arg(fee_info->fee_from - 1).arg(fee_info->fee_to - 1);
56+
return QString("%1-%2").arg(fee_info->fee_from).arg(fee_info->fee_to);
5757
case TxCount:
5858
return (qint64)fee_info->tx_count;
5959
case TotalSize:

0 commit comments

Comments
 (0)