Skip to content

Commit

Permalink
Move utils
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-vball committed Jul 11, 2024
1 parent cc7e07f commit 785ccee
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contracts/src/teleporter/TeleporterMessenger.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import {
ITeleporterMessenger
} from "./ITeleporterMessenger.sol";
import {ReceiptQueue} from "./ReceiptQueue.sol";
import {SafeERC20TransferFrom} from "./SafeERC20TransferFrom.sol";
import {SafeERC20TransferFrom} from "@utilities/utils/SafeERC20TransferFrom.sol";
import {ITeleporterReceiver} from "./ITeleporterReceiver.sol";
import {ReentrancyGuards} from "./ReentrancyGuards.sol";
import {ReentrancyGuards} from "@utilities/utils/ReentrancyGuards.sol";

/**
* @dev Implementation of the {ITeleporterMessenger} interface.
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/teleporter/tests/ReentrancyGuardsTests.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
pragma solidity 0.8.18;

import {Test} from "forge-std/Test.sol";
import {ReentrancyGuards} from "../ReentrancyGuards.sol";
import {ReentrancyGuards} from "@utilities/utils/ReentrancyGuards.sol";

contract ReentrancyGuardsTests is Test {
SampleMessenger internal _sampleMessenger;
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/teleporter/tests/TestMessenger.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
pragma solidity 0.8.18;

import {TeleporterMessageInput, TeleporterFeeInfo} from "@teleporter/ITeleporterMessenger.sol";
import {SafeERC20TransferFrom, SafeERC20} from "@teleporter/SafeERC20TransferFrom.sol";
import {SafeERC20TransferFrom, SafeERC20} from "@utilities/utils/SafeERC20TransferFrom.sol";
import {TeleporterOwnerUpgradeable} from "@utilities/upgrades/TeleporterOwnerUpgradeable.sol";
import {IERC20} from "@openzeppelin/[email protected]/token/ERC20/IERC20.sol";
import {ReentrancyGuard} from "@openzeppelin/[email protected]/security/ReentrancyGuard.sol";
Expand Down

0 comments on commit 785ccee

Please sign in to comment.