Unverified Commit fa739d8a by Francisco Giordano Committed by GitHub

Move BreakInvariantBounty to drafts (#1334)

* move BreakInvariantBounty to drafts

* fix bad imports
parent 6c36bc71
......@@ -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 "../../contracts/drafts/BreakInvariantBounty.sol";
contract InsecureInvariantTargetMock is Target {
......
......@@ -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 "../../contracts/drafts/BreakInvariantBounty.sol";
contract SecureInvariantTargetMock is Target {
......
const { ethGetBalance, ethSendTransaction } = require('./helpers/web3');
const expectEvent = require('./helpers/expectEvent');
const { assertRevert } = require('./helpers/assertRevert');
const { ethGetBalance, ethSendTransaction } = require('../helpers/web3');
const expectEvent = require('../helpers/expectEvent');
const { assertRevert } = require('../helpers/assertRevert');
const SecureInvariantTargetBounty = artifacts.require('SecureInvariantTargetBounty');
const InsecureInvariantTargetBounty = artifacts.require('InsecureInvariantTargetBounty');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment