Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Redm4x committed Nov 9, 2023
1 parent cdd9674 commit 02f5737
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/routers/apiRouter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ apiRouter.get(
const date = await getPredictedBlockDate(height, blockWindow);

res.send({
predictedDate: date,
height: height,
date: date,
blockWindow: blockWindow
});
})
Expand All @@ -110,7 +110,7 @@ apiRouter.get(
const height = await getPredictedDateHeight(date, blockWindow);

res.send({
height: height,
predictedHeight: height,
date: date,
blockWindow: blockWindow
});
Expand Down

0 comments on commit 02f5737

Please sign in to comment.