Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
thurendous committed Oct 24, 2024
1 parent b90ee7e commit 3c545a9
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions script/DeployNft.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,7 @@ contract DeployNft is Script {

vm.startBroadcast(deployerPrivateKey);

AmbassadorNft nft = new AmbassadorNft(
admin,
minter,
burner,
uriSetter
);
AmbassadorNft nft = new AmbassadorNft(admin, minter, burner, uriSetter);

console.log("Deployer:", deployer);
console.log("AmbassadorNft deployed at:", address(nft));
Expand Down

0 comments on commit 3c545a9

Please sign in to comment.