From fb15c5b35415c27c828e446c8a3b2f9c785fdd73 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Fri, 28 Sep 2018 10:15:35 +0900 Subject: [PATCH] Increase timeout for wallet, update references --- BTCPayServer/BTCPayServer.csproj | 6 +++--- BTCPayServer/wwwroot/js/StoreWallet.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BTCPayServer/BTCPayServer.csproj b/BTCPayServer/BTCPayServer.csproj index b98a4beab..8abddaa49 100644 --- a/BTCPayServer/BTCPayServer.csproj +++ b/BTCPayServer/BTCPayServer.csproj @@ -44,14 +44,14 @@ - + - + - + diff --git a/BTCPayServer/wwwroot/js/StoreWallet.js b/BTCPayServer/wwwroot/js/StoreWallet.js index fa96f41b7..25c62364b 100644 --- a/BTCPayServer/wwwroot/js/StoreWallet.js +++ b/BTCPayServer/wwwroot/js/StoreWallet.js @@ -61,7 +61,7 @@ $(function () { confirmButton.prop("disabled", true); confirmButton.addClass("disabled"); - bridge.sendCommand('sendtoaddress', args, 60 * 5 /* timeout */) + bridge.sendCommand('sendtoaddress', args, 60 * 10 /* timeout */) .catch(function (reason) { WriteAlert("danger", reason); confirmButton.prop("disabled", false);