From 7e714bdfa208dd87c569f0c359f15645e59d2377 Mon Sep 17 00:00:00 2001 From: Rockstar Developer <5191402+rockstardev@users.noreply.github.com> Date: Tue, 16 Jul 2019 22:45:32 -0500 Subject: [PATCH] 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. --- BTCPayServer/Data/StoreData.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Data/StoreData.cs b/BTCPayServer/Data/StoreData.cs index 2894e39b3..57f226696 100644 --- a/BTCPayServer/Data/StoreData.cs +++ b/BTCPayServer/Data/StoreData.cs @@ -298,7 +298,7 @@ namespace BTCPayServer.Data public StoreBlob() { InvoiceExpiration = 15; - MonitoringExpiration = 60; + MonitoringExpiration = 1440; PaymentTolerance = 0; RequiresRefundEmail = true; }