Skip to content

Commit 07a593b

Browse files
committed
chore: vea import migration
1 parent e578647 commit 07a593b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

contracts/src/gateway/interfaces/IForeignGateway.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
pragma solidity 0.8.24;
1010

1111
import "../../arbitration/interfaces/IArbitratorV2.sol";
12-
import "@kleros/vea-contracts/src/interfaces/gateways/IReceiverGateway.sol";
12+
import "@kleros/vea-contracts/interfaces/gateways/IReceiverGateway.sol";
1313

1414
interface IForeignGateway is IArbitratorV2, IReceiverGateway {
1515
/// @dev To be emitted when a dispute is sent to the IHomeGateway.

contracts/src/gateway/interfaces/IHomeGateway.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
pragma solidity 0.8.24;
1010

1111
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
12-
import "@kleros/vea-contracts/src/interfaces/gateways/ISenderGateway.sol";
12+
import "@kleros/vea-contracts/interfaces/gateways/ISenderGateway.sol";
1313
import "../../arbitration/interfaces/IArbitrableV2.sol";
1414

1515
interface IHomeGateway is IArbitrableV2, ISenderGateway {

contracts/src/gateway/mock/VeaMock.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
pragma solidity 0.8.24;
44

5-
import "@kleros/vea-contracts/src/interfaces/inboxes/IVeaInbox.sol";
6-
import "@kleros/vea-contracts/src/interfaces/outboxes/IVeaOutboxOnL1.sol";
5+
import "@kleros/vea-contracts/interfaces/inboxes/IVeaInbox.sol";
6+
import "@kleros/vea-contracts/interfaces/outboxes/IVeaOutboxOnL1.sol";
77

88
contract VeaMock is IVeaOutboxOnL1, IVeaInbox {
99
/* solhint-disable */

0 commit comments

Comments
 (0)