diff --git a/migrations/2_deploy_contracts.js b/migrations/2_deploy_contracts.js index ed1fb1122..869c60623 100644 --- a/migrations/2_deploy_contracts.js +++ b/migrations/2_deploy_contracts.js @@ -4,9 +4,10 @@ module.exports = function(deployer) { deployer.deploy(ProofOfExistence); deployer.deploy(Ownable); deployer.deploy(LimitFunds); - if(deployer.network == 'test'){ + deployer.deploy(SecureTargetMock); deployer.deploy(SecureTargetFactory); + deployer.deploy(InsecureTargetMock); deployer.deploy(InsecureTargetFactory); }; };