Skip to content

Commit

Permalink
Fix prettier linting
Browse files Browse the repository at this point in the history
  • Loading branch information
theref committed Jul 31, 2024
1 parent 3bdcc8d commit c85fe2e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions contracts/contracts/coordination/InfractionCollector.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import "./Coordinator.sol";
import "../../threshold/ITACoChildApplication.sol";

contract InfractionCollector is OwnableUpgradeable {

event InfractionReported(uint32 ritualId, address participant);
Coordinator public immutable coordinator;

Expand All @@ -17,9 +16,7 @@ contract InfractionCollector is OwnableUpgradeable {
// Mapping to keep track of reported infractions
mapping(uint32 => mapping(address => bool)) public infractions;

constructor(
Coordinator _coordinator,
ITACoChildApplication _tacoChildApplication
constructor(Coordinator _coordinator, ITACoChildApplication _tacoChildApplication

Check failure on line 19 in contracts/contracts/coordination/InfractionCollector.sol

View workflow job for this annotation

GitHub Actions / linting

Delete ⏎····
) {
coordinator = _coordinator;
tacoChildApplication = _tacoChildApplication;
Expand Down

0 comments on commit c85fe2e

Please sign in to comment.