WalletSendLedger and LedgerConnection only depends on PSBT

This commit is contained in:
nicolas.dorier
2019-05-11 20:02:32 +09:00
parent e853bddbc8
commit 541c748ecb
5 changed files with 47 additions and 123 deletions

View File

@@ -7,11 +7,9 @@ namespace BTCPayServer.Models.WalletViewModels
{
public class WalletSendLedgerModel
{
public int FeeSatoshiPerByte { get; set; }
public bool SubstractFees { get; set; }
public bool DisableRBF { get; set; }
public decimal Amount { get; set; }
public string Destination { get; set; }
public bool NoChange { get; set; }
public string WebsocketPath { get; set; }
public string PSBT { get; set; }
public string HintChange { get; set; }
public string SuccessPath { get; set; }
}
}