Skip to content

Commit

Permalink
test: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kupermind committed May 22, 2024
1 parent eeb09ae commit 7a2e15e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/TokenomicsLoop.js
Original file line number Diff line number Diff line change
Expand Up @@ -1945,7 +1945,7 @@ describe("Tokenomics integration", async () => {
// fKD = fKD > epsilonRate ? fkD : epsilonRate
// fKD = 0.06
// idf = 1 + fKD = 1.06
const idf = await tokenomics.getIDF(currentPoint);
const idf = await tokenomics.getLastIDF();
expect(idf).to.equal("106" + "0".repeat(16));

// Get the epoch point of the last epoch
Expand Down Expand Up @@ -2279,7 +2279,7 @@ describe("Tokenomics integration", async () => {
// fKD = fKD > epsilonRate ? fkD : epsilonRate
// fKD = 0.06
// idf = 1 + fKD = 1.06
const idf = await tokenomics.getIDF(currentPoint);
const idf = await tokenomics.getLastIDF();
expect(idf).to.equal("106" + "0".repeat(16));

// Get the epoch point of the last epoch
Expand Down

0 comments on commit 7a2e15e

Please sign in to comment.