Skip to content

Commit d9328fb

Browse files
committed
updated .gitignore
1 parent 34ee274 commit d9328fb

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ docs/
1212

1313
# Dotenv file
1414
.env
15+
16+
broadcast/

script/CLAMMPoolDeployer.s.sol

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,6 @@ contract CLAMMPoolDeployer is Script {
1717
mapping(address => mapping(address => mapping(uint24 => address))) public poolForPair;
1818

1919
constructor() {
20-
// vm.startBroadcast();
21-
// // Set the owner to the address that deploys the contract
22-
// owner = msg.sender;
23-
// vm.stopBroadcast();
24-
25-
console.log("owner in contructor", owner);
26-
2720
// Initialize the feeToTickSpacing mapping with values
2821
feeToTickSpacing[500] = 10;
2922
feeToTickSpacing[3000] = 60;
@@ -46,8 +39,6 @@ contract CLAMMPoolDeployer is Script {
4639
revert CLAMMPoolDeployer__InvalidFeeEntered();
4740
}
4841
if (owner != address(0) && msg.sender != owner) {
49-
console.log("msg.sender", msg.sender);
50-
console.log("owner", owner);
5142
revert CLAMMPoolDeployer__NotOwner();
5243
}
5344
return deployCLAMMPoolContract(tokenA, tokenB, fee, initialSqrtPriceX96);

0 commit comments

Comments
 (0)