Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 committed Jan 19, 2024
1 parent e02d9f4 commit c3a948d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/utility/validate_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def readSLIP44():
lines.append(line)
if lines:
for line in lines:
coinNumber = int(line[2:line.find(" ")])
coinNumber = int(line[2:line.find(" ", 2)])
if(line.find("[") > 0):
pretty = line[line.find("[")+1:line.find("]")]
website = line[line.find("(")+1:line.find(")")]
Expand Down

0 comments on commit c3a948d

Please sign in to comment.