Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Scitz0 committed Nov 3, 2024
1 parent 9221dd2 commit 91e06b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/cnode-helper-scripts/cntools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4175,10 +4175,10 @@ function main {
anchor_url_arr=()
anchor_url_start=0
while true; do
anchor_url_chunk=${anchor_url:$anchor_url_start:$max_len}
anchor_url_chunk=${anchor_url:${anchor_url_start}:${max_len}}
[[ -z ${anchor_url_chunk} ]] && break
anchor_url_arr+=( ${anchor_url_chunk} )
anchor_url_start+=max_len
anchor_url_start=$(( anchor_url_start + max_len ))
done
# print data
IFS='#' read -r proposal_tx_id proposal_index <<< "${action_id}"
Expand Down

0 comments on commit 91e06b7

Please sign in to comment.