From e7494052975c60032629112390325f7e20817308 Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 29 Jun 2012 17:26:45 +0800 Subject: Fix a few typos --- src/base58.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/base58.h') diff --git a/src/base58.h b/src/base58.h index b492cd683c..58149976f2 100644 --- a/src/base58.h +++ b/src/base58.h @@ -119,7 +119,7 @@ inline bool DecodeBase58(const char* psz, std::vector& 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& vchRet) { return DecodeBase58(str.c_str(), vchRet); @@ -139,7 +139,7 @@ inline std::string EncodeBase58Check(const std::vector& 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& vchRet) { if (!DecodeBase58(psz, vchRet)) @@ -160,7 +160,7 @@ inline bool DecodeBase58Check(const char* psz, std::vector& 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& vchRet) { return DecodeBase58Check(str.c_str(), vchRet); -- cgit v1.2.3