Browse Source

Deploy SimpleTokenBounty and CrowdsaleTokenBounty

Bill Gleim 9 years ago
parent
commit
87cc05613e
1 changed files with 2 additions and 1 deletions
  1. 2 1
      migrations/2_deploy_contracts.js

+ 2 - 1
migrations/2_deploy_contracts.js

@@ -2,7 +2,8 @@ module.exports = function(deployer) {
   deployer.deploy(PullPaymentBid);
   deployer.deploy(PullPaymentBid);
   deployer.deploy(BadArrayUse);
   deployer.deploy(BadArrayUse);
   deployer.deploy(ProofOfExistence);
   deployer.deploy(ProofOfExistence);
-  deployer.deploy(Bounty);
+  deployer.deploy(SimpleTokenBounty);
+  deployer.deploy(CrowdsaleTokenBounty);
   deployer.deploy(Ownable);
   deployer.deploy(Ownable);
   deployer.deploy(LimitFunds);
   deployer.deploy(LimitFunds);
 };
 };