Commit bc3f2a66 by Makoto Inoue

Deploy mock contracts only for test

parent f19a69be
......@@ -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);
};
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment