mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-12 19:02:01 +01:00
12 lines
670 B
Text
12 lines
670 B
Text
@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" />
|
|
<input type="hidden" asp-for="PendingTransactionId" value="@Model.PendingTransactionId" />
|
|
<input type="hidden" asp-for="BalanceChangeFromReplacement" value="@Model.BalanceChangeFromReplacement" />
|
|
}
|