Skip to content

Commit ce5d816

Browse files
committed
revert Script lazer
1 parent 3d93909 commit ce5d816

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,14 +176,14 @@ contract PythLazerDeployScript is Script {
176176
}
177177

178178
function run() public {
179-
address impl = deployImplementation("tazer:impl");
180-
deployProxy("tazer:proxy", impl);
179+
address impl = deployImplementation("lazer:impl");
180+
deployProxy("lazer:proxy", impl);
181181
}
182182

183183
function migrate() public {
184184
// Deploys new version and updates proxy to use new address
185-
address proxyAddress = getProxyAddress("tazer:proxy");
186-
address newImpl = deployImplementation("tazer:impl");
185+
address proxyAddress = getProxyAddress("lazer:proxy");
186+
address newImpl = deployImplementation("lazer:impl");
187187
bytes memory migrateCall = abi.encodeWithSignature("migrate()");
188188
vm.startBroadcast();
189189
UUPSUpgradeable proxy = UUPSUpgradeable(proxyAddress);

0 commit comments

Comments
 (0)