Commit bc3f2a66 by Makoto Inoue

Deploy mock contracts only for test

parent f19a69be
...@@ -5,6 +5,8 @@ module.exports = function(deployer) { ...@@ -5,6 +5,8 @@ module.exports = function(deployer) {
deployer.deploy(Bounty); deployer.deploy(Bounty);
deployer.deploy(Ownable); deployer.deploy(Ownable);
deployer.deploy(LimitFunds); deployer.deploy(LimitFunds);
deployer.deploy(SecureTargetMock); if(deployer.network == 'test'){
deployer.deploy(InsecureTargetMock); 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