Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tsudmi committed Dec 5, 2024
1 parent f70be17 commit 3602772
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions script/DeployMerkleDistributor.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.26;

import {Script} from 'forge-std/Script.sol';
import {console} from 'forge-std/console.sol';
import {SafeCast} from "@openzeppelin/contracts/utils/math/SafeCast.sol";
import {SafeCast} from '@openzeppelin/contracts/utils/math/SafeCast.sol';
import {MerkleDistributor} from '../src/MerkleDistributor.sol';

contract DeployMerkleDistributor is Script {
Expand All @@ -31,12 +31,8 @@ contract DeployMerkleDistributor is Script {
ConfigParams memory params = _readEnvVariables();

// Deploy MerkleDistributor
MerkleDistributor merkleDistributor = new MerkleDistributor(
params.keeper,
params.governor,
params.rewardsDelay,
params.rewardsMinOracles
);
MerkleDistributor merkleDistributor =
new MerkleDistributor(params.keeper, params.governor, params.rewardsDelay, params.rewardsMinOracles);
console.log('MerkleDistributor deployed at: ', address(merkleDistributor));

vm.stopBroadcast();
Expand Down

0 comments on commit 3602772

Please sign in to comment.