outer function doesn't need to be async

This commit is contained in:
Michael Bradley, Jr 2018-09-19 21:13:19 -05:00
parent e19b3b2f51
commit 917757b04c
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ Blockchain.prototype.run = function() {
next(null, cmd, args); next(null, cmd, args);
}, true); }, true);
} }
], async function (err, cmd, args) { ], function (err, cmd, args) {
if (err) { if (err) {
console.error(err.message); console.error(err.message);
return; return;