2_deploy_contracts.js 327 B

1234567891011
  1. module.exports = function(deployer) {
  2. deployer.deploy(PullPaymentBid);
  3. deployer.deploy(BadArrayUse);
  4. deployer.deploy(ProofOfExistence);
  5. deployer.deploy(Ownable);
  6. deployer.deploy(LimitFunds);
  7. if(deployer.network == 'test'){
  8. deployer.deploy(SecureTargetBounty);
  9. deployer.deploy(InsecureTargetBounty);
  10. };
  11. };