Skip to content

Commit

Permalink
fix: unstaked sol value (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
butonium authored Jun 4, 2024
1 parent 92d8865 commit a14e66a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/v2-apply-unstakes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Send Discord Notification
run: |
validators_count=$(<"$UNSTAKE_HINTS_JSON" jq '[.unstake_hints[].marinade_stake] | length' -r)
unstaked_sol=$(<"$UNSTAKE_HINTS_JSON" jq '[.unstake_hints[].marinade_stake] | add' -r)
unstaked_sol=$(<"$UNSTAKE_HINTS_JSON" jq '[.unstake_hints[].marinade_stake | tonumber] | add' -r)
message="Late unstake successfully applied. ($validators_count validators, $unstaked_sol SOL)"
Expand Down

0 comments on commit a14e66a

Please sign in to comment.