Can set store policy to define how much time to wait before passing a transaction from paid to invalid.

This commit is contained in:
nicolas.dorier
2017-12-03 14:43:52 +09:00
parent 7efe83eba8
commit 22f06ecd4e
8 changed files with 80 additions and 34 deletions

View File

@@ -34,6 +34,14 @@ namespace BTCPayServer.Models.StoreViewModels
get; set;
}
[Display(Name = "Payment invalid if transactions fails to confirm after ... minutes")]
[Range(10, 60 * 24 * 31)]
public int MonitoringExpiration
{
get;
set;
}
[Display(Name = "Consider the invoice confirmed when the payment transaction...")]
public SpeedPolicy SpeedPolicy
{