Files
openzeppelin-contracts/migrations/2_deploy_contracts.js
Manuel Araoz 0dfb27ff5f fix tests
2017-01-16 17:42:26 -03:00

10 lines
254 B
JavaScript

module.exports = function(deployer) {
deployer.deploy(Ownable);
deployer.deploy(Claimable);
deployer.deploy(LimitBalance);
if(deployer.network == 'test'){
deployer.deploy(SecureTargetBounty);
deployer.deploy(InsecureTargetBounty);
}
};