Pass factory address to bounty

This commit is contained in:
Makoto Inoue
2016-10-26 19:34:08 +01:00
parent 721d8fbbf7
commit 14b8496247
4 changed files with 18 additions and 14 deletions

View File

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