We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c5bd0c commit eeff1a2Copy full SHA for eeff1a2
packages/keyring-controller/src/KeyringController.ts
@@ -1379,9 +1379,9 @@ export class KeyringController extends BaseController<
1379
let keyring: SelectedKeyring | undefined;
1380
1381
if ('address' in selector) {
1382
- keyring = (await this.getKeyringForAccount(
1383
- normalize(selector.address) as Hex,
1384
- )) as SelectedKeyring | undefined;
+ keyring = (await this.getKeyringForAccount(selector.address)) as
+ | SelectedKeyring
+ | undefined;
1385
} else {
1386
keyring = this.getKeyringsByType(selector.type)[selector.index || 0] as
1387
| SelectedKeyring
0 commit comments