Skip to content

Commit

Permalink
feat(contracts): mv MockAdapter and MockReporter under adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
allemanfredi committed Apr 9, 2024
1 parent b90c787 commit 5618f8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity ^0.8.20;

import { Adapter } from "../adapters/Adapter.sol";
import { BlockHashAdapter } from "../adapters/BlockHashAdapter.sol";
import { Adapter } from "../Adapter.sol";
import { BlockHashAdapter } from "../BlockHashAdapter.sol";

contract MockAdapter is Adapter, BlockHashAdapter {
error LengthMismatch();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity ^0.8.20;

import { Reporter } from "../adapters/Reporter.sol";
import { IAdapter } from "../interfaces/IAdapter.sol";
import { Reporter } from "../Reporter.sol";
import { IAdapter } from "../../interfaces/IAdapter.sol";

contract MockReporter is Reporter {
constructor(address headerStorage, address yaho) Reporter(headerStorage, yaho) {}
Expand Down

0 comments on commit 5618f8f

Please sign in to comment.