Browse Source

Fixed relative imports. (#1321)

(cherry picked from commit 225b492109ca83eda6f3af62265226c13ef2ba5e)
Nicolás Venturo 7 years ago
parent
commit
f22adbb742

+ 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/drafts/BreakInvariantBounty.sol";
+import {BreakInvariantBounty, Target} from "../drafts/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/drafts/BreakInvariantBounty.sol";
+import {BreakInvariantBounty, Target} from "../drafts/BreakInvariantBounty.sol";
 
 
 contract SecureInvariantTargetMock is Target {