Post
Topic
Board Development & Technical Discussion
Re: How is this address possible?
by
SgtSpike
on 22/06/2011, 07:07:37 UTC
Neither of those are invalid. Bitcoin's base58 doesn't allow '0', 'O', 'I', or 'l'. Characters 'o' and 'L' are fine.

Code:
static const char* pszBase58 = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
Ahhhhh, makes a whole lot more sense.  Thanks for straightening that out for me (us).