Skip to content

Commit a42da79

Browse files
author
Lucien Grondin
committed
remove unnecessary sigil
1 parent 5ba39ea commit a42da79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bech32.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ ord() { LC_CTYPE=C printf '%d' "'$1"; }
2828
bech32_hrp_expand() {
2929
declare -i x
3030
for x
31-
do echo $(( $x >> 5 ))
31+
do echo $(( x >> 5 ))
3232
done
3333
echo 0
3434
for x
35-
do echo $(( $x & 31 ))
35+
do echo $(( x & 31 ))
3636
done
3737
}
3838
bech32_verify_checksum() {

0 commit comments

Comments
 (0)