mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
Fix, allow rescan if other crypto nodes are not synched
This commit is contained in:
parent
b423b4eec1
commit
676a914c40
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue