Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/components/miners/ScoreFactorsStrip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,7 @@ const composeMultiplier = (sf: ScoreFactors): number =>
sf.crownShareWindow *
sf.capacityFactor *
sf.volumeFactor *
// TODO: display reads rate³ × ramp; underlying math is (rate × ramp)³ — fix later
(sf.successRate30d * sf.credibilityRamp) ** 3;
sf.successMultiplier;

const CompositeFooter: React.FC<{ sf: ScoreFactors | undefined }> = ({
sf,
Expand Down Expand Up @@ -317,7 +316,7 @@ const CompositeFooter: React.FC<{ sf: ScoreFactors | undefined }> = ({
>
{fmtMultiplier(m)}
<Box component="span" sx={{ color: 'text.disabled', ml: 0.75 }}>
= crown × cap × vol × rate³ × ramp
= crown × cap × vol × success
</Box>
</Typography>
</Stack>
Expand Down
Loading