Skip to content

Commit 30b0338

Browse files
fix bug with adjusting gas
1 parent 4002856 commit 30b0338

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/contracts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ ContractsManager.prototype.build = function(done) {
7979
contract.abiDefinition = compiledContract.abiDefinition;
8080

8181
contract.gas = (contractConfig && contractConfig.gas) || self.contractsConfig.gas;
82-
contract.gas = adjustGas(contract);
82+
adjustGas(contract);
8383

8484
contract.gasPrice = contract.gasPrice || self.contractsConfig.gasPrice;
8585
contract.type = 'file';

0 commit comments

Comments
 (0)