Skip to content

Commit bdf59ec

Browse files
committed
lint
1 parent 7384214 commit bdf59ec

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

script/Deploy.s.sol

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ contract DeployScript is Script {
3535

3636
if (_isProd) {
3737
if (expectedProdDeployAddress.code.length == 0) {
38-
address proxyLoader = address(new AlchemyProxyLoader{salt: 0}(0xDdF32240B4ca3184De7EC8f0D5Aba27dEc8B7A5C));
38+
address proxyLoader =
39+
address(new AlchemyProxyLoader{salt: 0}(0xDdF32240B4ca3184De7EC8f0D5Aba27dEc8B7A5C));
3940

4041
if (proxyLoader != expectedProdDeployAddress) {
4142
revert(
@@ -63,15 +64,16 @@ contract DeployScript is Script {
6364
revert(string(abi.encodePacked("Proxy2 deployed to: ", proxy2, " instead of ", proxyAddress2)));
6465
}
6566
}
66-
6767
} else {
6868
if (expectedStgDeployAddress.code.length == 0) {
6969
address proxyLoader2 = address(new AlchemyProxyLoader{salt: 0}(stgProxyLoaderOwner));
7070

7171
if (proxyLoader2 != expectedStgDeployAddress) {
7272
revert(
7373
string(
74-
abi.encodePacked("Proxy loader 2 deployed to: ", proxyLoader2, " instead of ", stgProxyLoaderOwner)
74+
abi.encodePacked(
75+
"Proxy loader 2 deployed to: ", proxyLoader2, " instead of ", stgProxyLoaderOwner
76+
)
7577
)
7678
);
7779
}

0 commit comments

Comments
 (0)