From 5e7ab1d9ec27aab6e321c5a647cc1717980d331e Mon Sep 17 00:00:00 2001 From: Justin Wind Date: Fri, 13 Aug 2021 11:55:43 -0700 Subject: [PATCH] correct some method names in error logs --- src/manager.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/manager.js b/src/manager.js index 6fb187c..d7a07f1 100644 --- a/src/manager.js +++ b/src/manager.js @@ -342,7 +342,7 @@ class Manager { let fn, info, id; try { if (data.mode === Enum.Mode.Publish) { - fn = 'topicPublish'; + fn = 'topicFetchRequested'; info = await this.db.topicFetchRequested(dbCtx, data.topicId); id = data.topicId; } else { @@ -366,7 +366,7 @@ class Manager { fn = 'topicFetchClaimAndProcessById'; await this.communication.topicFetchClaimAndProcessById(dbCtx, id, requestId); } else { - fn = 'processVerification'; + fn = 'verificationClaimAndProcessById'; await this.communication.verificationClaimAndProcessById(dbCtx, id, requestId); } } catch (e) { -- 2.43.2