Skip to content

Commit

Permalink
feat: don't use explicit remappings
Browse files Browse the repository at this point in the history
  • Loading branch information
reednaa committed Dec 19, 2023
1 parent 285df66 commit c4748b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions remappings.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
forge-std/=lib/forge-std/src/
openzeppelin/=lib/openzeppelin-contracts/contracts/
vibc-core-smart-contracts/=lib/vibc-core-smart-contracts/contracts/
openzeppelin/=lib/openzeppelin-contracts/contracts/
4 changes: 2 additions & 2 deletions src/apps/polymer/IncentivizedPolymerEscrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ pragma solidity ^0.8.13;
import {IMETimeoutExtension} from "../../TimeoutExtension.sol";
import {MockOnRecvAMB} from "../../../test/mocks/MockOnRecvAMB.sol";

import {AckPacket} from "vibc-core-smart-contracts/Ibc.sol";
import {AckPacket} from "vibc-core-smart-contracts/contracts/Ibc.sol";
import {
IbcMwUser,
UniversalPacket,
IbcUniversalPacketSender,
IbcUniversalPacketReceiver
} from "vibc-core-smart-contracts/IbcMiddleware.sol";
} from "vibc-core-smart-contracts/contracts/IbcMiddleware.sol";

/// @notice Polymer implementation of the Generalised Incentives based on vIBC.
/// @dev Notice that since the relayer is read from tx.origin, this implementation only works between EVM chains.
Expand Down

0 comments on commit c4748b7

Please sign in to comment.