Skip to content

Commit

Permalink
Trivial change to InitializeGovernedUpgradeabilityProxy so the byteco…
Browse files Browse the repository at this point in the history
…de changes so NativeStakingSSVStrategy2Proxy can be reverified
  • Loading branch information
naddison36 committed Jul 11, 2024
1 parent 13ddd76 commit d843ee4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ contract InitializeGovernedUpgradeabilityProxy is Governable {
/**
* @dev Upgrade the backing implementation of the proxy.
* Only the admin can call this function.
* @param newImplementation Address of the new implementation.
* @param _newImplementation Address of the new implementation.
*/
function upgradeTo(address newImplementation) external onlyGovernor {
_upgradeTo(newImplementation);
function upgradeTo(address _newImplementation) external onlyGovernor {
_upgradeTo(_newImplementation);
}

/**
Expand Down

0 comments on commit d843ee4

Please sign in to comment.