From a4e4ff04d25242545b95677fb7952c85e9ed2aa7 Mon Sep 17 00:00:00 2001 From: chalith Date: Sun, 28 Apr 2024 00:04:24 +0530 Subject: [PATCH] Minor fix --- reputationd/lib/reputationd.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reputationd/lib/reputationd.js b/reputationd/lib/reputationd.js index 65e83ca..cf9f041 100644 --- a/reputationd/lib/reputationd.js +++ b/reputationd/lib/reputationd.js @@ -635,8 +635,7 @@ class ReputationD { let scores = null; if (this.cfg.contractInstance && this.cfg.contractInstance.created_timestamp && - currentMoment === (await this.reputationClient.getMoment(this.cfg.contractInstance.created_timestamp) + 1) && - this.cfg.contractInstance.status === ContractStatus.Deployed) + currentMoment === (await this.reputationClient.getMoment(this.cfg.contractInstance.created_timestamp) + 1)) scores = await this.#getScores(); console.log(`Reporting reputations at Moment ${currentMoment} ${scores ? 'With scores' : 'Without scores'}...`);