Skip to content

Commit

Permalink
Update Deploy.s.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
audsssy committed Oct 4, 2023
1 parent 8a0a6fe commit e26d739
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions script/Deploy.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ pragma solidity ^0.8.17;

import {Script} from 'forge-std/Script.sol';

import {Greeter} from "src/Greeter.sol";
// import {Greeter} from "src/Greeter.sol";

/// @notice A very simple deployment script
contract Deploy is Script {

/// @notice The main script entrypoint
/// @return greeter The deployed contract
function run() external returns (Greeter greeter) {
vm.startBroadcast();
greeter = new Greeter("GM");
vm.stopBroadcast();
}
// /// @notice The main script entrypoint
// /// @return greeter The deployed contract
// function run() external returns (Greeter greeter) {
// vm.startBroadcast();
// // greeter = new Greeter("GM");
// vm.stopBroadcast();
// }
}

0 comments on commit e26d739

Please sign in to comment.