File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -402,7 +402,7 @@ export class Wallet {
402402 factory,
403403 factoryData,
404404 } ,
405- ...( await this . prepareBlankEnvelope ( Number ( chainId ) ) ) ,
405+ ...( await this . prepareBlankEnvelope ( Number ( chainId ) , provider ) ) ,
406406 }
407407 }
408408
@@ -490,7 +490,7 @@ export class Wallet {
490490 nonce,
491491 calls,
492492 } ,
493- ...( await this . prepareBlankEnvelope ( Number ( chainId ) ) ) ,
493+ ...( await this . prepareBlankEnvelope ( Number ( chainId ) , provider ) ) ,
494494 }
495495 }
496496
@@ -597,8 +597,8 @@ export class Wallet {
597597 return encoded
598598 }
599599
600- private async prepareBlankEnvelope ( chainId : number ) {
601- const status = await this . getStatus ( )
600+ private async prepareBlankEnvelope ( chainId : number , provider ?: Provider . Provider ) {
601+ const status = await this . getStatus ( provider )
602602
603603 return {
604604 wallet : this . address ,
You can’t perform that action at this time.
0 commit comments