You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Why is fxhash using this one? ("123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ")
I get that order doesn't matter for the random generation of var fxhash, but I realized I was using the wrong index for base58 to decimal conversion because I was relying on the defined alphabet variable.
The text was updated successfully, but these errors were encountered:
The base58check uses this array of chars: "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
Bitcoin base58 alphabet
Tezos base58 alphabet
Definition
Why is fxhash using this one? ("123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ")
I get that order doesn't matter for the random generation of
var fxhash
, but I realized I was using the wrong index for base58 to decimal conversion because I was relying on the definedalphabet
variable.The text was updated successfully, but these errors were encountered: