Can broadcast PSBT, can decide to export something signed by the ledger via PSBT

This commit is contained in:
nicolas.dorier
2019-05-12 00:05:30 +09:00
parent 925dc869a2
commit cb9130fdf9
7 changed files with 198 additions and 52 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.WalletViewModels
{
public class WalletPSBTReadyViewModel
{
public string PSBT { get; set; }
public List<string> Errors { get; set; }
}
}