aboutsummaryrefslogtreecommitdiff
path: root/src/base58.h
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2012-06-29 17:26:45 +0800
committerLuke Dashjr <luke-jr+git@utopios.org>2012-07-05 23:54:49 +0000
commitd477028247a7de1f1e2acabe85d5d281bd8f62cf (patch)
tree9b08c935eba848c126fe3fe5e1871f03c381211b /src/base58.h
parent19920202cc73c72f7cf5df8eb0d158f6713ef6f5 (diff)
downloadbitcoin-d477028247a7de1f1e2acabe85d5d281bd8f62cf.tar.xz
Fix a few typos
Diffstat (limited to 'src/base58.h')
-rw-r--r--src/base58.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base58.h b/src/base58.h
index bc681a08ca..201a9e24b4 100644
--- a/src/base58.h
+++ b/src/base58.h
@@ -118,7 +118,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);
@@ -138,7 +138,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))
@@ -159,7 +159,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);