mirror of https://github.com/embarklabs/embark.git
Merge pull request #562 from embark-framework/remove_extra_messages
remove extra logs
This commit is contained in:
commit
aa5063e5ef
|
@ -15,9 +15,7 @@ class GasEstimator {
|
||||||
const self = this;
|
const self = this;
|
||||||
let gasMap = {};
|
let gasMap = {};
|
||||||
self.events.request('contracts:contract', contractName, (contract) => {
|
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);
|
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);
|
let contractObj = new web3.eth.Contract(contract.abiDefinition, contract.deployedAddress);
|
||||||
async.each(contract.abiDefinition.filter((x) => x.type !== "event"),
|
async.each(contract.abiDefinition.filter((x) => x.type !== "event"),
|
||||||
(abiMethod, gasCb) => {
|
(abiMethod, gasCb) => {
|
||||||
|
|
Loading…
Reference in New Issue