Make recommended fee confirmation target configurable

Address #1110
This commit is contained in:
Umar Bolatov
2019-11-06 16:21:33 -08:00
parent f0c2fb62df
commit 0a9290a980
9 changed files with 21 additions and 8 deletions

View File

@@ -40,6 +40,10 @@ namespace BTCPayServer.Models.StoreViewModels
[Display(Name = "Show recommended fee")]
public bool ShowRecommendedFee { get; set; }
[Display(Name = "Recommended fee confirmation target blocks")]
[Range(1, double.PositiveInfinity)]
public int RecommendedFeeBlockTarget { get; set; }
[Display(Name = "Do not propose on chain payment if the value of the invoice is below...")]
[MaxLength(20)]
public string OnChainMinValue { get; set; }