Skip to content

Commit

Permalink
Update event emitted by setPendingAdmin (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
koloz193 authored Oct 30, 2023
1 parent 9bc126d commit 48a0015
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereum/contracts/zksync/facets/Admin.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ contract AdminFacet is Base, IAdmin {
address oldPendingAdmin = s.pendingAdmin;
// Change pending admin
s.pendingAdmin = _newPendingAdmin;
emit NewPendingGovernor(oldPendingAdmin, _newPendingAdmin);
emit NewPendingAdmin(oldPendingAdmin, _newPendingAdmin);
}

/// @notice Accepts transfer of admin rights. Only pending admin can accept the role.
Expand Down

0 comments on commit 48a0015

Please sign in to comment.