Skip to content

Commit ef7e20c

Browse files
Fix option name
1 parent 8202773 commit ef7e20c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/snaps-controllers/src/multichain/MultichainRouter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ type InternalAccount = {
5353

5454
type SnapKeyring = {
5555
submitRequest: (request: {
56-
id: string;
56+
account: string;
5757
method: string;
5858
params?: Json[] | Record<string, Json>;
5959
scope: Caip2ChainId;
@@ -305,7 +305,7 @@ export class MultichainRouter {
305305
if (accountId) {
306306
return this.#withSnapKeyring(async (keyring) =>
307307
keyring.submitRequest({
308-
id: accountId,
308+
account: accountId,
309309
scope,
310310
method,
311311
params: params as JsonRpcParams,

0 commit comments

Comments
 (0)