Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactor: keyringEventInfo -> keyringObject
  • Loading branch information
ccharly committed Dec 8, 2025
commit 1a2a27cf436c04c73630ccb7fd894e0b0d7b93b2
4 changes: 2 additions & 2 deletions packages/keyring-controller/src/KeyringController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2324,11 +2324,11 @@ export class KeyringController<
);

// Those accounts got added, since they were not part of the old set of accounts.
newAccounts.forEach((keyringEventInfo, newAccount) =>
newAccounts.forEach((keyringObject, newAccount) =>
this.messenger.publish(
'KeyringController:accountAdded',
newAccount,
keyringEventInfo,
keyringObject,
),
);

Expand Down