diff options
| author | ummjackson <[email protected]> | 2014-02-04 23:29:53 +1100 |
|---|---|---|
| committer | ummjackson <[email protected]> | 2014-02-04 23:29:53 +1100 |
| commit | 7045aeccaee38df43194294fd7a6d197eb573cf5 (patch) | |
| tree | d95a4e25f6ce6a482d9fcbdeea7a51177cfd1f79 /src | |
| parent | Fixing testnet crash in RPC (diff) | |
| download | discoin-7045aeccaee38df43194294fd7a6d197eb573cf5.tar.xz discoin-7045aeccaee38df43194294fd7a6d197eb573cf5.zip | |
Comment fix
Luckynumeric? No idea...
Diffstat (limited to 'src')
| -rw-r--r-- | src/base58.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base58.h b/src/base58.h index 08a40221e..fec9fd2c1 100644 --- a/src/base58.h +++ b/src/base58.h @@ -9,9 +9,9 @@ // Why base-58 instead of standard base-64 encoding? // - Don't want 0OIl characters that look the same in some fonts and // could be used to create visually identical looking account numbers. -// - A string with non-luckynumeric characters is not as easily accepted as an account number. +// - A string with non-alphanumeric characters is not as easily accepted as an account number. // - E-mail usually won't line-break if there's no punctuation to break at. -// - Double-clicking selects the whole number as one word if it's all luckynumeric. +// - Double-clicking selects the whole number as one word if it's all alphanumeric. // #ifndef BITCOIN_BASE58_H #define BITCOIN_BASE58_H |