Skip to content

Commit

Permalink
fix: constant name in local deploy script
Browse files Browse the repository at this point in the history
Signed-off-by: 0xRaccoon <[email protected]>
  • Loading branch information
0xRaccoon committed Oct 28, 2024
1 parent a8e8fe5 commit 29f8629
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ contract WinddownUpgrade is Script {
vm.stopBroadcast();

// Get the admin address of the L1StandardBridge
storageData = vm.load(address(optimismPortalProxy), WinddownConstants.OWNER_KEY);
storageData = vm.load(address(optimismPortalProxy), OWNER_KEY);
adminAddress = address(uint160(uint256(storageData)));

vm.startBroadcast(adminAddress);
Expand Down

0 comments on commit 29f8629

Please sign in to comment.