Skip to content

Commit

Permalink
fix: remove Foo file reference
Browse files Browse the repository at this point in the history
  • Loading branch information
clearlyMine committed Feb 9, 2024
1 parent dc02cf9 commit 278aad4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions script/Deploy.s.sol
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity >=0.8.23 <0.9.0;

import { Foo } from "../src/Foo.sol";
import { Day01 } from "../src/Day01.sol";

import { BaseScript } from "./Base.s.sol";

/// @dev See the Solidity Scripting tutorial: https://book.getfoundry.sh/tutorials/solidity-scripting
contract Deploy is BaseScript {
function run() public broadcast returns (Foo foo) {
foo = new Foo();
}
function run() public broadcast returns (Day01 foo) {
foo = new Day01();
}
}

0 comments on commit 278aad4

Please sign in to comment.