Skip to content

Commit

Permalink
fixf
Browse files Browse the repository at this point in the history
  • Loading branch information
0xrajath committed Jan 8, 2025
1 parent 6d564f1 commit 62254f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/rewards/5_goldRfaeStakers.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ token_breakdowns AS (
WHEN sott.snapshot < @trinityHardforkDate AND sott.reward_submission_date < @trinityHardforkDate THEN
floor(sott.total_staker_operator_payout * COALESCE(ops.split, 1000) / CAST(10000 AS DECIMAL))
ELSE
floor(sott.total_staker_operator_payout * COALESCE(oas.split, dos.split, 1000) / CAST(10000 AS DECIMAL))
floor(sott.total_staker_operator_payout * COALESCE(ops.split, dos.split, 1000) / CAST(10000 AS DECIMAL))
END as operator_tokens,
CASE
WHEN sott.snapshot < @arnoHardforkDate AND sott.reward_submission_date < @arnoHardforkDate THEN
Expand Down

0 comments on commit 62254f3

Please sign in to comment.