Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

Commit

Permalink
Fix analysis mode not being correctly set
Browse files Browse the repository at this point in the history
  • Loading branch information
nbanmp committed May 29, 2019
1 parent 86533e8 commit fef7f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers.js
Expand Up @@ -228,7 +228,7 @@ const doAnalysis = async (client, config, contracts, limit = defaultAnalyzeRateL

analyzeOpts.data = cleanAnalyzeDataEmptyProps(obj.buildObj, config.debug,
config.logger.debug);
analyzeOpts.data.analysisMode = analyzeOpts.mode || 'quick';
analyzeOpts.data.analysisMode = config.mode || 'quick';
if (config.debug > 1) {
config.logger.debug(`${util.inspect(analyzeOpts, {depth: null})}`);
}
Expand Down

0 comments on commit fef7f88

Please sign in to comment.