Skip to content

Commit

Permalink
fixed import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
St0rmBr3w committed Jan 24, 2024
1 parent cb8584a commit cb3150b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/token/oft/latest/extensions/NativeOFTV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./OFTV2.sol";
import "../OFTV2.sol";

contract NativeOFTV2 is OFTV2, ReentrancyGuard {
uint public outboundAmount;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pragma solidity ^0.8.0;

import "../OFTCoreV2.sol";
import "../../OFTCoreV2.sol";
import "./IOFTWithFee.sol";
import "./Fee.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/oft/latest/extensions/fee/IOFTWithFee.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

pragma solidity >=0.5.0;

import "../interfaces/ICommonOFT.sol";
import "../../interfaces/ICommonOFT.sol";

/**
* @dev Interface of the IOFT core standard
Expand Down

0 comments on commit cb3150b

Please sign in to comment.