From 87cc05613e3a71b5f54cef1807a559fc2602c9b3 Mon Sep 17 00:00:00 2001 From: Bill Gleim Date: Sun, 23 Oct 2016 10:04:28 -0700 Subject: [PATCH] Deploy SimpleTokenBounty and CrowdsaleTokenBounty --- migrations/2_deploy_contracts.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/migrations/2_deploy_contracts.js b/migrations/2_deploy_contracts.js index b29a532cc..8b400d5d1 100644 --- a/migrations/2_deploy_contracts.js +++ b/migrations/2_deploy_contracts.js @@ -2,7 +2,8 @@ module.exports = function(deployer) { deployer.deploy(PullPaymentBid); deployer.deploy(BadArrayUse); deployer.deploy(ProofOfExistence); - deployer.deploy(Bounty); + deployer.deploy(SimpleTokenBounty); + deployer.deploy(CrowdsaleTokenBounty); deployer.deploy(Ownable); deployer.deploy(LimitFunds); };