fix bug with adjusting gas

This commit is contained in:
Steven Ireland 2016-12-26 11:47:57 -05:00
parent 4002856f89
commit 30b03383ee
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ ContractsManager.prototype.build = function(done) {
contract.abiDefinition = compiledContract.abiDefinition;
contract.gas = (contractConfig && contractConfig.gas) || self.contractsConfig.gas;
contract.gas = adjustGas(contract);
adjustGas(contract);
contract.gasPrice = contract.gasPrice || self.contractsConfig.gasPrice;
contract.type = 'file';