Skip to content

Commit

Permalink
removed eventcaller from migrations file
Browse files Browse the repository at this point in the history
  • Loading branch information
udkreddy committed Aug 6, 2019
1 parent c425805 commit f2177c2
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions migrations/2_deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,14 @@ const Master = artifacts.require('Master');
const GBTStandardToken = artifacts.require('GBTStandardToken');
const Governance = artifacts.require('Governance');
const ProposalCategory = artifacts.require('ProposalCategory');
const EventCaller = artifacts.require('EventCaller');

module.exports = function(deployer) {
deployer.then(async () => {
ec = await deployer.deploy(EventCaller);
gbt = await deployer.deploy(GBTStandardToken);
await deployer.deploy(GovBlocksMaster, ec.address);
await deployer.deploy(GovBlocksMaster);
gv = await deployer.deploy(Governance);
mr = await deployer.deploy(MemberRoles);
pc = await deployer.deploy(ProposalCategory);
let implementations = [mr.address, pc.address, gv.address];
ms = await deployer.deploy(Master);
await ms.initMaster(
mr.address,
true,
gbt.address,
gbt.address,
implementations
);
});
};

0 comments on commit f2177c2

Please sign in to comment.