Simplify root key path calculation

This commit is contained in:
nicolas.dorier
2018-04-12 11:48:33 +09:00
parent 77b42eb085
commit 2b11cc1077
6 changed files with 16 additions and 20 deletions

View File

@@ -4,6 +4,7 @@ using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.Rendering;
using NBitcoin;
namespace BTCPayServer.Models.StoreViewModels
{
@@ -29,6 +30,6 @@ namespace BTCPayServer.Models.StoreViewModels
public string ServerUrl { get; set; }
public string StatusMessage { get; internal set; }
public string RootKeyPath { get; set; }
public KeyPath RootKeyPath { get; set; }
}
}