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 85e9281 commit 179df70Copy full SHA for 179df70
src/qt/mempooltxtables.cpp
@@ -50,7 +50,7 @@ QVariant MempoolTxTableModel::data(const QModelIndex& index, int role) const
50
return BitcoinUnits::formatWithUnit(BitcoinUnits::Unit::BTC, wtx->credit - wtx->debit, false, BitcoinUnits::SeparatorStyle::ALWAYS);
51
case Fee:
52
{
53
- CAmount fee = wtx->debit - wtx->credit - wtx->change;
+ CAmount fee = wtx->debit - wtx->credit;
54
return BitcoinUnits::formatWithUnit(BitcoinUnits::Unit::BTC, fee, false, BitcoinUnits::SeparatorStyle::ALWAYS);
55
}
56
case Status:
0 commit comments