aboutsummaryrefslogtreecommitdiff
path: root/src/base58.h
diff options
context:
space:
mode:
authorfanquake <[email protected]>2012-06-29 17:26:45 +0800
committerLuke Dashjr <[email protected]>2012-07-05 23:54:41 +0000
commit46761b339cd57c5de56c2ae5c7a6d8fa592567ce (patch)
tree5c22fbbd130c9289a5114ebfbbb210c35a30cd3d /src/base58.h
parentChanged a comment about a QVariant type (diff)
downloaddiscoin-46761b339cd57c5de56c2ae5c7a6d8fa592567ce.tar.xz
discoin-46761b339cd57c5de56c2ae5c7a6d8fa592567ce.zip
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 d92054da0..8ee05b073 100644
--- a/src/base58.h
+++ b/src/base58.h
@@ -117,7 +117,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);
@@ -137,7 +137,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))
@@ -158,7 +158,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);