mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
70fcd053cd
* Signing Context cleanup Removes extra NBXSeedAvailable property in SigningContext, which got introduced in #2559. It is not needed since each view model involved already has it. * Fix button in link
22 lines
513 B
C#
22 lines
513 B
C#
using NBitcoin;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class SigningContextModel
|
|
{
|
|
public SigningContextModel()
|
|
{
|
|
|
|
}
|
|
public SigningContextModel(PSBT psbt)
|
|
{
|
|
PSBT = psbt.ToBase64();
|
|
}
|
|
public string PSBT { get; set; }
|
|
public string OriginalPSBT { get; set; }
|
|
public string PayJoinBIP21 { get; set; }
|
|
public bool? EnforceLowR { get; set; }
|
|
public string ChangeAddress { get; set; }
|
|
}
|
|
}
|