Skip to content

Commit

Permalink
fix: mock contract imports
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonchuah committed Nov 13, 2023
1 parent 0f7a32d commit 6a2bd13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

import {GelatoVRFConsumer} from "./GelatoVRFConsumer.sol";
import {IGelatoVRFConsumer} from "../IGelatoVRFConsumer.sol";

contract MockVRFConsumer is GelatoVRFConsumer {
contract MockVRFConsumer is IGelatoVRFConsumer {
uint256 public latestRandomness;
address public dedicatedMsgSender;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

import {GelatoVRFConsumerBase} from "./GelatoVRFConsumerBase.sol";
import {GelatoVRFConsumerBase} from "../GelatoVRFConsumerBase.sol";

contract MockVRFConsumerBase is GelatoVRFConsumerBase {
uint256 public latestRandomness;
Expand Down

0 comments on commit 6a2bd13

Please sign in to comment.