Skip to content

Commit

Permalink
more gas for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Elsasser committed May 19, 2018
1 parent bb245ad commit 8766ac0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/2_deploy_contracts.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = function(deployer, network) {
const marketTokenToLockForTrading = 0; // for testing purposes, require no loc
const marketTokenAmountForContractCreation = 0; //for testing purposes require no balance
const marketContractExpiration = Math.floor(Date.now() / 1000) + 60 * 15; // expires in 15 minutes.
var gasLimit = 3900000;
var gasLimit = 4000000;

// deploy primary instance of market contract
deployer
Expand All @@ -45,7 +45,7 @@ module.exports = function(deployer, network) {
return MarketContractRegistry.deployed().then(function(registryInstance) {
// deploy the factory
return deployer
.deploy(MarketContractFactory, registryInstance.address, { gas: 6400000 })
.deploy(MarketContractFactory, registryInstance.address, { gas: 6600000 })
.then(async function(factory) {
await registryInstance.addFactoryAddress(factory.address); // white list the factory

Expand Down

0 comments on commit 8766ac0

Please sign in to comment.