Skip to content

Commit

Permalink
chore(walletManagerController): fix init
Browse files Browse the repository at this point in the history
  • Loading branch information
sztok7 committed Jan 19, 2024
1 parent 73dd0e9 commit 25c8b29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class WalletManagerController implements IWalletManagerController {
} else if (network === Network.SUBSTRATE && initArgument.apiPromise) {
this.initFromApiPromise(initArgument.apiPromise);
} else if (network === Network.SUBSTRATE && initArgument.wssConnectionUrl) {
void this.initFromWssProvider(initArgument as string);
void this.initFromWssProvider(initArgument.wssConnectionUrl);
}
}

Expand Down

0 comments on commit 25c8b29

Please sign in to comment.