From 676a914c40486a22bd346287a448a2797558a079 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Sun, 4 Nov 2018 22:46:27 +0900 Subject: [PATCH] Fix, allow rescan if other crypto nodes are not synched --- BTCPayServer/Controllers/WalletsController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/WalletsController.cs b/BTCPayServer/Controllers/WalletsController.cs index 8b89fb25f..88a515d10 100644 --- a/BTCPayServer/Controllers/WalletsController.cs +++ b/BTCPayServer/Controllers/WalletsController.cs @@ -279,7 +279,7 @@ namespace BTCPayServer.Controllers return NotFound(); var vm = new RescanWalletModel(); - vm.IsFullySync = _dashboard.IsFullySynched(); + vm.IsFullySync = _dashboard.IsFullySynched(walletId.CryptoCode, out var unused); // We need to ensure it is segwit, // because hardware wallet support need the parent transactions to sign, which NBXplorer don't have. (Nor does a pruned node) vm.IsSegwit = paymentMethod.DerivationStrategyBase.IsSegwit();