Merge pull request #562 from embark-framework/remove_extra_messages

remove extra logs
This commit is contained in:
Iuri Matias 2018-06-19 15:49:37 -04:00 committed by GitHub
commit aa5063e5ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -15,9 +15,7 @@ class GasEstimator {
const self = this;
let gasMap = {};
self.events.request('contracts:contract', contractName, (contract) => {
self.logger.info("Generating three rounds of fuzz for contract -- ", contractName);
let fuzzMap = self.fuzzer.generateFuzz(3, contract);
self.logger.info("-- Beginning gastimation for contract -- " + contractName);
let contractObj = new web3.eth.Contract(contract.abiDefinition, contract.deployedAddress);
async.each(contract.abiDefinition.filter((x) => x.type !== "event"),
(abiMethod, gasCb) => {