@using Microsoft.AspNetCore.Mvc.ModelBinding @using BTCPayServer.Controllers @using BTCPayServer.Services @using BTCPayServer.Components.LabelManager @model WalletBumpFeeViewModel @{ var walletId = Context.GetRouteValue("walletId").ToString(); var cancelUrl = this.Model.ReturnUrl ?? Url.Action(nameof(UIWalletsController.WalletTransactions), new { walletId }); Layout = "_LayoutWizard"; ViewData.SetActivePage(WalletsNavPages.Send, StringLocalizer["Bump fee"], walletId); } @section Navbar { } @section PageHeadContent { } @section PageFootContent { }

@ViewData["Title"]

@if (Model.TransactionHashes is not null) { for (int i = 0; i < Model.TransactionHashes.Length; i++) { } } @if (Model.Outpoints is not null) { for (int i = 0; i < Model.Outpoints.Length; i++) { } } @if (!ViewContext.ModelState.IsValid) { } @if (Model.GetBumpTarget().GetSingleTransactionId() is { } txId) {
} @if (Model.CurrentFeeSatoshiPerByte is not null) {
}
@if (Model.RecommendedSatoshiPerByte.Any()) {
Confirm in the next …
@for (var index = 0; index < Model.RecommendedSatoshiPerByte.Count; index++) { var feeRateOption = Model.RecommendedSatoshiPerByte[index]; }
}
@Html.HiddenFor(a => a.IsMultiSigOnServer) @if (Model.IsMultiSigOnServer) { } else { }