Deploy mock contracts only for test

This commit is contained in:
Makoto Inoue
2016-10-22 18:26:25 +01:00
parent f19a69beb4
commit bc3f2a66cc

View File

@ -5,6 +5,8 @@ module.exports = function(deployer) {
deployer.deploy(Bounty);
deployer.deploy(Ownable);
deployer.deploy(LimitFunds);
deployer.deploy(SecureTargetMock);
deployer.deploy(InsecureTargetMock);
if(deployer.network == 'test'){
deployer.deploy(SecureTargetMock);
deployer.deploy(InsecureTargetMock);
};
};