Merge pull request #6498 from BlueWallet/fix-ms-gap-limit

FIX: bump gap_limit for multisig to 20
This commit is contained in:
GLaDOS 2024-05-01 20:24:00 +00:00 committed by GitHub
commit 3d252b9028
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;