Deploy mock contracts only for test
This commit is contained in:
@ -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);
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user