Skip to content

Commit 3371ba2

Browse files
committed
refactor: small changes in contract creation
1 parent fd0620a commit 3371ba2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ test:
88
forge test -vvv
99

1010
build:
11-
forge build --sizes
11+
forge build --force --sizes
1212

1313
create:
14-
forge create --constructor-args ${CONSTRUCTOR_ARGS} --private-key ${PRIVATE_KEY} src/Spleth.sol:Spleth
14+
forge create --mnemonic ${MNEMONIC_PATH} src/Spleth.sol:Spleth --constructor-args ${CONSTRUCTOR_ARGS}
1515

1616
.PHONY: test create

src/Spleth.sol

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
pragma solidity ^0.8.13;
33

44
import "openzeppelin-contracts/token/ERC20/utils/SafeERC20.sol";
5-
import "forge-std/console.sol";
65

76
contract Spleth {
87

0 commit comments

Comments
 (0)