migrate to truffle 3

This commit is contained in:
Manuel Araoz
2017-02-14 17:57:37 -03:00
parent 60b48b0235
commit a69333e2b8
4 changed files with 21 additions and 5 deletions

View File

@ -1,3 +1,9 @@
var Ownable = artifacts.require("ownership/Ownable.sol");
var Claimable = artifacts.require("ownership/Claimable.sol");
var LimitBalance = artifacts.require("LimitBalance.sol");
var SecureTargetBounty = artifacts.require("test-helpers/SecureTargetBounty.sol");
var InsecureTargetBounty = artifacts.require("test-helpers/InsecureTargetBounty.sol");
module.exports = function(deployer) {
deployer.deploy(Ownable);
deployer.deploy(Claimable);