From 225b492109ca83eda6f3af62265226c13ef2ba5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Venturo?= Date: Wed, 12 Sep 2018 16:17:47 -0300 Subject: [PATCH] Fixed relative imports. (#1321) --- contracts/mocks/InsecureInvariantTargetBounty.sol | 2 +- contracts/mocks/SecureInvariantTargetBounty.sol | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/mocks/InsecureInvariantTargetBounty.sol b/contracts/mocks/InsecureInvariantTargetBounty.sol index 32d305cac..ded818b1a 100644 --- a/contracts/mocks/InsecureInvariantTargetBounty.sol +++ b/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 { diff --git a/contracts/mocks/SecureInvariantTargetBounty.sol b/contracts/mocks/SecureInvariantTargetBounty.sol index f08fbd9b8..40f2de994 100644 --- a/contracts/mocks/SecureInvariantTargetBounty.sol +++ b/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 {