Allow import of coldcard wallet

This commit is contained in:
Kukks
2019-05-08 20:37:37 +02:00
committed by Nicolas Dorier
parent 0b6dfe0fd3
commit 538eb66672
5 changed files with 105 additions and 27 deletions

View File

@@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc.Rendering;
using NBitcoin;
@@ -32,5 +33,8 @@ namespace BTCPayServer.Models.StoreViewModels
public string StatusMessage { get; internal set; }
public KeyPath RootKeyPath { get; set; }
[Display(Name = "Coldcard Wallet File")]
public IFormFile ColdcardPublicFile{ get; set; }
}
}