From 197a9b124119c8d24d80e9158b8fb63dc2baad7a Mon Sep 17 00:00:00 2001 From: overtorment Date: Wed, 1 May 2024 12:25:49 +0100 Subject: [PATCH] FIX: bump gap_limit for multisig to 20 --- class/wallets/multisig-hd-wallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class/wallets/multisig-hd-wallet.ts b/class/wallets/multisig-hd-wallet.ts index 0bd8842af..abe9fbcad 100644 --- a/class/wallets/multisig-hd-wallet.ts +++ b/class/wallets/multisig-hd-wallet.ts @@ -81,7 +81,7 @@ export class MultisigHDWallet extends AbstractHDElectrumWallet { private _isLegacy: boolean = false; private _nodes: BIP32Interface[][] = []; public _derivationPath: string = ''; - public gap_limit: number = 10; + public gap_limit: number = 20; isLegacy() { return this._isLegacy;