diff --git a/WalletWasabi.Fluent/ViewModels/Wallets/Send/TransactionSummaryViewModel.cs b/WalletWasabi.Fluent/ViewModels/Wallets/Send/TransactionSummaryViewModel.cs index 80af2fd9477..34d30479a84 100644 --- a/WalletWasabi.Fluent/ViewModels/Wallets/Send/TransactionSummaryViewModel.cs +++ b/WalletWasabi.Fluent/ViewModels/Wallets/Send/TransactionSummaryViewModel.cs @@ -1,3 +1,4 @@ +using NBitcoin; using WalletWasabi.Blockchain.Analysis.Clustering; using WalletWasabi.Blockchain.TransactionBuilding; using WalletWasabi.Fluent.Extensions; @@ -20,6 +21,7 @@ public partial class TransactionSummaryViewModel : ViewModelBase [AutoNotify] private LabelsArray _recipient = LabelsArray.Empty; [AutoNotify] private Amount? _fee; [AutoNotify] private Amount? _amount; + [AutoNotify] private FeeRate? _feeRate; [AutoNotify] private double? _amountDiff; [AutoNotify] private double? _feeDiff; @@ -53,6 +55,7 @@ public void UpdateTransaction(BuildTransactionResult transactionResult, Transact Amount = UiContext.AmountProvider.Create(destinationAmount); Fee = UiContext.AmountProvider.Create(_transaction.Fee); + FeeRate = info.FeeRate; Recipient = info.Recipient; IsCustomFeeUsed = info.IsCustomFeeUsed; diff --git a/WalletWasabi.Fluent/Views/Wallets/Send/TransactionSummary.axaml b/WalletWasabi.Fluent/Views/Wallets/Send/TransactionSummary.axaml index 466c597ef72..be64cc59ed8 100644 --- a/WalletWasabi.Fluent/Views/Wallets/Send/TransactionSummary.axaml +++ b/WalletWasabi.Fluent/Views/Wallets/Send/TransactionSummary.axaml @@ -117,6 +117,15 @@ + + + + + + +