Skip to content

Commit

Permalink
fix compilation errors due to hardhat-foundry
Browse files Browse the repository at this point in the history
  • Loading branch information
tmsdkeys committed Feb 15, 2024
1 parent 367ee7a commit cbc692b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions contracts/CustomChanIbcContract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

pragma solidity ^0.8.9;

import '../lib/vibc-core-smart-contracts/contracts/Ibc.sol';
import '../lib/vibc-core-smart-contracts/contracts/IbcReceiver.sol';
import '../lib/vibc-core-smart-contracts/contracts/IbcDispatcher.sol';
import '@open-ibc/vibc-core-smart-contracts/contracts/Ibc.sol';
import '@open-ibc/vibc-core-smart-contracts/contracts/IbcReceiver.sol';
import '@open-ibc/vibc-core-smart-contracts/contracts/IbcDispatcher.sol';

contract CustomChanIbcContract is IbcReceiverBase, IbcReceiver {
// received packet as chain B
Expand Down
8 changes: 4 additions & 4 deletions contracts/UniversalChanIbcContract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

pragma solidity ^0.8.9;

import '../lib/vibc-core-smart-contracts/contracts/Ibc.sol';
import '../lib/vibc-core-smart-contracts/contracts/IbcReceiver.sol';
import '../lib/vibc-core-smart-contracts/contracts/IbcDispatcher.sol';
import '../lib/vibc-core-smart-contracts/contracts/IbcMiddleware.sol';
import '@open-ibc/vibc-core-smart-contracts/contracts/Ibc.sol';
import '@open-ibc/vibc-core-smart-contracts/contracts/IbcReceiver.sol';
import '@open-ibc/vibc-core-smart-contracts/contracts/IbcDispatcher.sol';
import '@open-ibc/vibc-core-smart-contracts/contracts/IbcMiddleware.sol';

contract UniversalChanIbcContract is IbcMwUser, IbcUniversalPacketReceiver {
struct UcPacketWithChannel {
Expand Down
1 change: 0 additions & 1 deletion remappings.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
@open-ibc/vibc-core-smart-contracts/=lib/vibc-core-smart-contracts/
@openzeppelin/=lib/openzeppelin-contracts/
@lazyledger/protobuf3-solidity-lib/=lib/protobuf3-solidity-lib/
ds-test/=lib/forge-std/lib/ds-test/src/
forge-std/=lib/forge-std/src/
Expand Down

0 comments on commit cbc692b

Please sign in to comment.