Skip to content

Commit

Permalink
fix: shadowing variable name
Browse files Browse the repository at this point in the history
Signed-off-by: JDawg287 <[email protected]>
  • Loading branch information
JDawg287 committed Sep 13, 2024
1 parent 0e8957a commit 36bceb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/DeployContracts.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -416,12 +416,12 @@ contract DeployContracts is Script {

function _proxify(
address logic,
address admin,
address adminAddr,
bytes memory data
) internal returns (address proxy) {
TransparentUpgradeableProxy proxy_ = new TransparentUpgradeableProxy(
logic,
admin,
adminAddr,
data
);
return (address(proxy_));
Expand Down

0 comments on commit 36bceb1

Please sign in to comment.