Skip to content

Commit

Permalink
fix: linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
wei3erHase committed Jul 16, 2024
1 parent 5f7cfc0 commit f18666b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions script/Params.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ contract Params {
/// @notice BCoWFactory deployment parameters
BCoWFactoryDeploymentParams internal _bCoWFactoryDeploymentParams;

constructor(uint256 _chainId) {
if (_chainId == 1 || _chainId == 11_155_111) {
constructor(uint256 chainId) {
if (chainId == 1 || chainId == 11_155_111) {
// Ethereum Mainnet & Ethereum Sepolia [Testnet]
_bFactoryDeploymentParams = BFactoryDeploymentParams({bDao: _B_DAO});
_bCoWFactoryDeploymentParams = BCoWFactoryDeploymentParams({settlement: _GPV2_SETTLEMENT, appData: _APP_DATA});
Expand Down
1 change: 0 additions & 1 deletion script/Script.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ pragma solidity 0.8.25;

import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import {IBPool} from 'contracts/BPool.sol';
import {IBFactory} from 'interfaces/IBFactory.sol';
import {IFaucet} from 'interfaces/IFaucet.sol';

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

0 comments on commit f18666b

Please sign in to comment.