Skip to content

Commit

Permalink
chore: use clearer var name
Browse files Browse the repository at this point in the history
  • Loading branch information
devceline committed Sep 22, 2023
1 parent a327677 commit b382ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/identity-keys/src/identity-keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,6 @@ export class IdentityKeys implements IIdentityKeys {
}

public listRegisteredAccounts(): string[] {
return this.identityKeys.getAll().map((kc) => kc.accountId);
return this.identityKeys.getAll().map((identityKeyChain) => identityKeyChain.accountId);
}
}

0 comments on commit b382ace

Please sign in to comment.