From 090b9897fd6188546a73de305ef66c0b999ec4e5 Mon Sep 17 00:00:00 2001 From: Vincent Rainaud Date: Fri, 6 Dec 2024 18:26:50 +0100 Subject: [PATCH] Format fix --- script/DeployNFT.s.sol | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/script/DeployNFT.s.sol b/script/DeployNFT.s.sol index 2e1ab61..491c108 100644 --- a/script/DeployNFT.s.sol +++ b/script/DeployNFT.s.sol @@ -9,13 +9,13 @@ contract DeployNFT is Script { function run() external { uint256 deployerPrivateKey = vm.envUint("PRIVATE_KEY"); address factoryAddress = vm.envAddress("FACTORY_ADDRESS"); - + vm.startBroadcast(deployerPrivateKey); - + WeatherNFTFactory factory = WeatherNFTFactory(factoryAddress); address nftAddress = factory.deployWeatherNFT("Weather Collection", "WEATHER"); console2.log("WeatherNFT deployed at:", nftAddress); - + vm.stopBroadcast(); } -} \ No newline at end of file +}