Replace composition for inheritance in Bounty

This commit is contained in:
Federico Bond
2016-11-01 23:51:45 -03:00
parent 056320ed94
commit 278f060c56
6 changed files with 36 additions and 75 deletions

View File

@ -5,9 +5,7 @@ module.exports = function(deployer) {
deployer.deploy(Ownable);
deployer.deploy(LimitFunds);
if(deployer.network == 'test'){
deployer.deploy(SecureTargetMock);
deployer.deploy(SecureTargetFactory);
deployer.deploy(InsecureTargetMock);
deployer.deploy(InsecureTargetFactory);
deployer.deploy(SecureTargetBounty);
deployer.deploy(InsecureTargetBounty);
};
};