Skip to content

Commit

Permalink
Show current epoch security value instead of cumulative
Browse files Browse the repository at this point in the history
  • Loading branch information
kacpersaw committed Aug 12, 2023
1 parent 8be99bf commit c5f75d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/overview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const Overview = () => {
<InfoBlock
accounts={epoch && epoch.stats.cumulative.accounts}
rewards={epoch && epoch.stats.cumulative.rewards}
security={epoch && epoch.stats.cumulative.security}
security={epoch && epoch.stats.current.security}
epoch={epoch && epoch.number}
layer={epoch && layer.number}
smeshers={epoch && epoch.stats.cumulative.smeshers}
Expand Down

0 comments on commit c5f75d1

Please sign in to comment.