Add fee information in wallet tx report and tx list (#6857)

This commit is contained in:
Nicolas Dorier
2025-07-17 22:24:02 +09:00
committed by GitHub
parent 03c5f4bb3c
commit 86881ba5a3
8 changed files with 125 additions and 29 deletions

View File

@@ -658,6 +658,7 @@ namespace BTCPayServer.Controllers
vm.Positive = tx.BalanceChange.GetValue(wallet.Network) >= 0;
vm.Balance = tx.BalanceChange.ShowMoney(wallet.Network);
vm.IsConfirmed = tx.Confirmations != 0;
vm.HistoryLine = tx;
// If support isn't possible, we want the user to be able to click so he can see why it doesn't work
vm.CanBumpFee =
tx.Confirmations == 0 &&