Remove segwit limitation for rescan

This commit is contained in:
nicolas.dorier
2019-04-23 21:04:21 +09:00
parent 44d1419af9
commit 098dfacce8
4 changed files with 1 additions and 14 deletions

View File

@@ -12,8 +12,7 @@ namespace BTCPayServer.Models.WalletViewModels
public bool IsServerAdmin { get; set; }
public bool IsSupportedByCurrency { get; set; }
public bool IsFullySync { get; set; }
public bool IsSegwit { get; set; }
public bool Ok => IsServerAdmin && IsSupportedByCurrency && IsFullySync && IsSegwit;
public bool Ok => IsServerAdmin && IsSupportedByCurrency && IsFullySync;
[Range(1000, 10_000)]
public int BatchSize { get; set; } = 3000;