diff --git a/reputationd/lib/reputationd.js b/reputationd/lib/reputationd.js index 74a24f5..039ddfa 100644 --- a/reputationd/lib/reputationd.js +++ b/reputationd/lib/reputationd.js @@ -676,8 +676,8 @@ class ReputationD { } let scores = null; - const createdMoment = this.cfg.contractInstance?.created_moment ?? -1; - if (currentMoment === createdMoment) + const createdMoment = this.cfg.contractInstance?.created_moment ?? -2; + if (currentMoment === (createdMoment + 1)) scores = await this.#getScores(); console.log(`Reporting reputations at Moment ${currentMoment} ${scores ? 'With scores' : 'Without scores'}...`);