Skip to content

Commit

Permalink
Fixed deploy script when run as a fork
Browse files Browse the repository at this point in the history
  • Loading branch information
naddison36 committed Oct 2, 2024
1 parent d53a75c commit 9f999fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/deploy/mainnet/003_UpgradeLidoARMScript.sol
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ contract UpgradeLidoARMMainnetScript is AbstractDeployScript {

function _fork() internal override {
if (tenderlyTestnet) {
vm.startBroadcast(Mainnet.ARM_MULTISIG);
} else {
console.log("Broadcasting fork script to Tenderly as: %s", Mainnet.ARM_MULTISIG);
vm.startBroadcast(Mainnet.ARM_MULTISIG);
} else {
vm.startPrank(Mainnet.ARM_MULTISIG);
}

if (lidoARMProxy == Proxy(0x0000000000000000000000000000000000000000)) {
Expand Down

0 comments on commit 9f999fa

Please sign in to comment.