File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
lazer/contracts/evm/script Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments