Skip to content

Commit

Permalink
Merge pull request #543 from Magickbase/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith-CY authored Sep 10, 2022
2 parents 4d89c51 + 689cbea commit 51962b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ const Statistic: React.FC<State['statistic'] & { isLoading: boolean }> = ({
setStats(start => ({
blockHeight: calclateCurValue(progress, +blockCount - 1, +start.blockHeight),
txCount: calclateCurValue(progress, +txCount, +start.txCount),
tps: calclateCurValue(progress, +tps, +start.tps),
tps: calclateCurValue(progress, +tps * 10, +start.tps * 10) / 10,
accountCount: calclateCurValue(progress, +accountCount, +start.accountCount),
averageBlockTime: calclateCurValue(progress, +averageBlockTime, start.averageBlockTime),
}))
Expand Down

1 comment on commit 51962b2

@vercel
Copy link

@vercel vercel bot commented on 51962b2 Sep 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.