Skip to content

Commit 07743a6

Browse files
committed
update
1 parent 0372d76 commit 07743a6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

lazer/contracts/evm/script/PythLazerChangeOwnership.s.sol

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ contract PythLazerChangeOwnership is Script {
1313
uint256 public OLD_OWNER_PRIVATE_KEY = vm.envUint("DEPLOYER_PRIVATE_KEY");
1414
address public OLD_OWNER = vm.addr(OLD_OWNER_PRIVATE_KEY);
1515
// EVM Executor Contract
16-
address public constant NEW_OWNER = address(0x549Ebba8036Ab746611B4fFA1423eb0A4Df61440);
16+
address public constant NEW_OWNER =
17+
address(0x549Ebba8036Ab746611B4fFA1423eb0A4Df61440);
1718

1819
function run() public {
1920
console.log("Old owner: %s", OLD_OWNER);
@@ -27,7 +28,10 @@ contract PythLazerChangeOwnership is Script {
2728
require(lazer.owner() == OLD_OWNER, "Old owner mismatch");
2829
lazer.transferOwnership(NEW_OWNER);
2930
console.log("Ownership transferred");
30-
console.log("New Lazer owner: %s", PythLazer(LAZER_PROXY_ADDRESS).owner());
31+
console.log(
32+
"New Lazer owner: %s",
33+
PythLazer(LAZER_PROXY_ADDRESS).owner()
34+
);
3135
vm.stopBroadcast();
3236
}
3337
}

0 commit comments

Comments
 (0)