Increasing default monitoring expiration time (#925)

With value 60 what would often happen is that invoice ends up being declared invalid, and then payment arrives later when system is not monitoring. After lots of production testing we decided to increase this value by default so that new users don't need to manually reassign invoices from `invalid` status, especially if they use third party plugin like wooCommerce.
This commit is contained in:
Rockstar Developer 2019-07-16 22:45:32 -05:00 committed by Nicolas Dorier
parent e3283fb29b
commit 7e714bdfa2

View File

@ -298,7 +298,7 @@ namespace BTCPayServer.Data
public StoreBlob()
{
InvoiceExpiration = 15;
MonitoringExpiration = 60;
MonitoringExpiration = 1440;
PaymentTolerance = 0;
RequiresRefundEmail = true;
}