浏览代码

Fixed relative imports. (#1321)

Nicolás Venturo 7 年之前
父节点
当前提交
225b492109
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      contracts/mocks/InsecureInvariantTargetBounty.sol
  2. 1 1
      contracts/mocks/SecureInvariantTargetBounty.sol

+ 1 - 1
contracts/mocks/InsecureInvariantTargetBounty.sol

@@ -3,7 +3,7 @@ pragma solidity ^0.4.24;
 // When this line is split, truffle parsing fails.
 // See: https://github.com/ethereum/solidity/issues/4871
 // solium-disable-next-line max-len
-import {BreakInvariantBounty, Target} from "../../contracts/bounties/BreakInvariantBounty.sol";
+import {BreakInvariantBounty, Target} from "../bounties/BreakInvariantBounty.sol";
 
 
 contract InsecureInvariantTargetMock is Target {

+ 1 - 1
contracts/mocks/SecureInvariantTargetBounty.sol

@@ -3,7 +3,7 @@ pragma solidity ^0.4.24;
 // When this line is split, truffle parsing fails.
 // See: https://github.com/ethereum/solidity/issues/4871
 // solium-disable-next-line max-len
-import {BreakInvariantBounty, Target} from "../../contracts/bounties/BreakInvariantBounty.sol";
+import {BreakInvariantBounty, Target} from "../bounties/BreakInvariantBounty.sol";
 
 
 contract SecureInvariantTargetMock is Target {