From ccf736fe7994ea7d0dce260e83339637702a3c0f Mon Sep 17 00:00:00 2001 From: arthcp Date: Sat, 7 Dec 2024 00:42:31 +0400 Subject: [PATCH] fix: log order --- script/Deploy.s.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/Deploy.s.sol b/script/Deploy.s.sol index 5148d53..6159731 100644 --- a/script/Deploy.s.sol +++ b/script/Deploy.s.sol @@ -37,7 +37,7 @@ contract CounterDeploy is Script { ); console.log("Contracts deployed:"); + console.log("CounterDeployer:", address(deployer)); console.log("CounterAppGateway:", address(gateway)); - console.log("Counter Deployer:", address(deployer)); } }