Deploy mock contracts only for test

This commit is contained in:
Makoto Inoue
2016-10-22 18:26:25 +01:00
parent 83662fa548
commit 8e7c7d54b1

View File

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