diff options
| author | practicalswift <[email protected]> | 2017-03-21 19:49:08 +0100 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-03-21 19:49:08 +0100 |
| commit | dbf30ff10f76d2ab9114b345e8712cba30a8d282 (patch) | |
| tree | 113b54b12a394382eee95bf40120009b2d143b0a /src/base58.cpp | |
| parent | Merge #9734: Add updating of chainTxData to release process (diff) | |
| download | discoin-dbf30ff10f76d2ab9114b345e8712cba30a8d282.tar.xz discoin-dbf30ff10f76d2ab9114b345e8712cba30a8d282.zip | |
[trivial] Fix typos in comments
Diffstat (limited to 'src/base58.cpp')
| -rw-r--r-- | src/base58.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base58.cpp b/src/base58.cpp index e2f475bb7..36b352369 100644 --- a/src/base58.cpp +++ b/src/base58.cpp @@ -134,7 +134,7 @@ bool DecodeBase58Check(const char* psz, std::vector<unsigned char>& vchRet) vchRet.clear(); return false; } - // re-calculate the checksum, insure it matches the included 4-byte checksum + // re-calculate the checksum, ensure it matches the included 4-byte checksum uint256 hash = Hash(vchRet.begin(), vchRet.end() - 4); if (memcmp(&hash, &vchRet.end()[-4], 4) != 0) { vchRet.clear(); |