From f9fb49a754c3f3ab71248b57b8a07d866580b791 Mon Sep 17 00:00:00 2001 From: Shyjal <1215425+shyjal@users.noreply.github.com> Date: Sun, 25 Apr 2021 05:52:35 +0530 Subject: [PATCH] Update check.js accounts.check undefined error fix --- lib/accounts/check.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/accounts/check.js b/lib/accounts/check.js index df8b167..6ce054e 100644 --- a/lib/accounts/check.js +++ b/lib/accounts/check.js @@ -1,6 +1,6 @@ const pathHelper = require("../pathHelper"); const fileNames = require("../fileNames"); -module.exports.check = (opts, options) => { +module.exports.check = async (opts, options) => { console.log("accounts.check", opts.account.id); -}; \ No newline at end of file +};