Skip to content

Commit 8dbd491

Browse files
committed
fix(viz): use muted color for uncertified EBs, rename Avg Block Fill
1 parent 28e6d9b commit 8dbd491

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

post-cip/mempool-sim-viz/src/components/Statistics.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function Statistics({ stats, blocks, ebEnabled, endorserBlocks = [] }: St
6565
value={stats.blocksProduced}
6666
/>
6767
<StatCard
68-
label="Block Fill"
68+
label="Avg Block Fill"
6969
value={`${fillPercent}%`}
7070
/>
7171
{ebEnabled && (
@@ -78,7 +78,7 @@ export function Statistics({ stats, blocks, ebEnabled, endorserBlocks = [] }: St
7878
<StatCard
7979
label="Uncertified EBs"
8080
value={endorserBlocks.filter(eb => !eb.certified).length}
81-
color={COLORS.adversary}
81+
color={COLORS.textMuted}
8282
/>
8383
</>
8484
)}

0 commit comments

Comments
 (0)