diff options
| author | fanquake <[email protected]> | 2012-06-29 17:26:45 +0800 |
|---|---|---|
| committer | fanquake <[email protected]> | 2012-06-29 17:26:45 +0800 |
| commit | e7494052975c60032629112390325f7e20817308 (patch) | |
| tree | 7ed7831315250c54c0f7738166ace95b5e29f151 /src/base58.h | |
| parent | Merge branch 'patch-5' of https://github.com/xanatos/bitcoin (diff) | |
| download | discoin-e7494052975c60032629112390325f7e20817308.tar.xz discoin-e7494052975c60032629112390325f7e20817308.zip | |
Fix a few typos
Diffstat (limited to 'src/base58.h')
| -rw-r--r-- | src/base58.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base58.h b/src/base58.h index b492cd683..58149976f 100644 --- a/src/base58.h +++ b/src/base58.h @@ -119,7 +119,7 @@ inline bool DecodeBase58(const char* psz, std::vector<unsigned char>& vchRet) } // Decode a base58-encoded string str into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58(const std::string& str, std::vector<unsigned char>& vchRet) { return DecodeBase58(str.c_str(), vchRet); @@ -139,7 +139,7 @@ inline std::string EncodeBase58Check(const std::vector<unsigned char>& vchIn) } // Decode a base58-encoded string psz that includes a checksum, into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& vchRet) { if (!DecodeBase58(psz, vchRet)) @@ -160,7 +160,7 @@ inline bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& vchRe } // Decode a base58-encoded string str that includes a checksum, into byte vector vchRet -// returns true if decoding is succesful +// returns true if decoding is successful inline bool DecodeBase58Check(const std::string& str, std::vector<unsigned char>& vchRet) { return DecodeBase58Check(str.c_str(), vchRet); |