Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
TrevorBenson committed Nov 28, 2020
1 parent cc24d9d commit ac2f705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/cnode-helper-scripts/cntools.sh
Expand Up @@ -756,7 +756,7 @@ EOF
getRewards ${wallet_name}
if [[ "${reward_lovelace}" -ge 0 ]]; then
say "$(printf "%-19s : ${FG_CYAN}%s${NC} ADA" "Rewards" "$(formatLovelace ${reward_lovelace})")" "log"
say "$(printf "%-19s : ${FG_CYAN}%s${NC} ADA" "Funds + Rewards" "$(formatLovelace $(( base_lovelace reward_lovelace})))")" "log"
say "$(printf "%-19s : ${FG_CYAN}%s${NC} ADA" "Funds + Rewards" "$(formatLovelace $((base_lovelace + reward_lovelace)))")" "log"
delegation_pool_id=$(jq -r '.delegation // empty' <<< "${stakeAddressInfo}")
if [[ -n ${delegation_pool_id} ]]; then
unset poolName
Expand Down

0 comments on commit ac2f705

Please sign in to comment.