Skip to content

Commit

Permalink
Move BreakInvariantBounty to drafts (#1334)
Browse files Browse the repository at this point in the history
* move BreakInvariantBounty to drafts

* fix bad imports
  • Loading branch information
frangio authored Sep 18, 2018
1 parent 6c36bc7 commit fa739d8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion contracts/mocks/InsecureInvariantTargetBounty.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion contracts/mocks/SecureInvariantTargetBounty.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
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');
Expand Down

0 comments on commit fa739d8

Please sign in to comment.