Skip to content

Commit

Permalink
rm unneccesary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
daopunk committed Jun 5, 2024
1 parent 35cf1be commit 8cc5025
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions src/contracts/Starter.sol
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.20;

import {Math} from '@opendollar/libraries/Math.sol';
import {IStarter} from '@interfaces/IStarter.sol';

contract Starter is IStarter {
using Math for uint256;

constructor() {}

function getNum() external pure returns (uint256 _num) {
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces/IStarter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pragma solidity 0.8.20;

interface IStarter {
struct TestState {
struct State {
uint256 foo;
}
}

0 comments on commit 8cc5025

Please sign in to comment.