We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d24e487 commit c2f3334Copy full SHA for c2f3334
Sources/web3swift/Convenience/Base58.swift
@@ -68,7 +68,7 @@ struct Base58 {
68
let string = base58.trimmingCharacters(in: CharacterSet.whitespaces)
69
guard !string.isEmpty else { return [] }
70
71
- // count leading "1"'s [decodes directly to zero bytes]
+ // count leading ASCII "1"'s [decodes directly to binary zero bytes]
72
var leadingZeros = 0
73
for c in string {
74
if c != "1" { break }
0 commit comments