Skip to content

Commit

Permalink
fix equation
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryun1 committed Jan 9, 2025
1 parent d27d15a commit 33fd581
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-plomin-votes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
spo_yes=$(echo "$response" | jq -r '.[0].pool_yes_votes_cast')
spo_no=$(echo "$response" | jq -r '.[0].pool_no_votes_cast')
spo_abstain=$(echo "$response" | jq -r '.[0].pool_abstain_votes_cast')
spo_not_voted=$(2787 - $spo_yes - $spo_no - $spo_abstain)
spo_not_voted=$((2787 - spo_yes - spo_no - spo_abstain))
spo_yes_stake=$(echo "$response" | jq -r '.[0].pool_active_yes_vote_power')
spo_no_stake=$(echo "$response" | jq -r '.[0].pool_active_no_vote_power')
Expand Down

0 comments on commit 33fd581

Please sign in to comment.