Skip to content

Commit

Permalink
dont use absolute paths
Browse files Browse the repository at this point in the history
  • Loading branch information
hexonaut committed Jun 9, 2024
1 parent 7eb7d7a commit 842bf17
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/receivers/AMBReceiver.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.0;

import { Address } from "lib/openzeppelin-contracts/contracts/utils/Address.sol";
import { Address } from "openzeppelin-contracts/contracts/utils/Address.sol";

interface IArbitraryMessagingBridge {
function messageSender() external view returns (address);
Expand Down
2 changes: 1 addition & 1 deletion src/receivers/ArbitrumReceiver.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.0;

import { Address } from "lib/openzeppelin-contracts/contracts/utils/Address.sol";
import { Address } from "openzeppelin-contracts/contracts/utils/Address.sol";

/**
* @title ArbitrumReceiver
Expand Down
2 changes: 1 addition & 1 deletion src/receivers/CCTPReceiver.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.0;

import { Address } from "lib/openzeppelin-contracts/contracts/utils/Address.sol";
import { Address } from "openzeppelin-contracts/contracts/utils/Address.sol";

/**
* @title CCTPReceiver
Expand Down
2 changes: 1 addition & 1 deletion src/receivers/OptimismReceiver.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.0;

import { Address } from "lib/openzeppelin-contracts/contracts/utils/Address.sol";
import { Address } from "openzeppelin-contracts/contracts/utils/Address.sol";

interface ICrossDomainOptimism {
function xDomainMessageSender() external view returns (address);
Expand Down

0 comments on commit 842bf17

Please sign in to comment.