btcpayserver/BTCPayServer/Views/Wallets/SigningContext.cshtml
2020-07-13 10:54:39 +02:00

11 lines
469 B
Plaintext

@model BTCPayServer.Models.WalletViewModels.SigningContextModel
@if (Model != null)
{
<input type="hidden" asp-for="PSBT" value="@Model.PSBT"/>
<input type="hidden" asp-for="OriginalPSBT" value="@Model.OriginalPSBT"/>
<input type="hidden" asp-for="PayJoinBIP21" value="@Model.PayJoinBIP21"/>
<input type="hidden" asp-for="EnforceLowR" value="@Model.EnforceLowR" />
<input type="hidden" asp-for="ChangeAddress" value="@Model.ChangeAddress" />
}