diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2020-12-24 22:37:17 +0900 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-01-04 12:31:31 +0800 |
commit | 1112035d32ffe73a4522226c8cb2f6a5878d3ada (patch) | |
tree | 7f5021ab6d285213918da66a9aaefa873ae4a5bc /src/merkleblock.cpp | |
parent | e8640849c775efcf202dbd34736fed8d61379c49 (diff) |
doc: fix various typos
Co-authored-by: Peter Yordanov <ppyordanov@yahoo.com>
Diffstat (limited to 'src/merkleblock.cpp')
-rw-r--r-- | src/merkleblock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/merkleblock.cpp b/src/merkleblock.cpp index 06ca59df62..3ffe1465da 100644 --- a/src/merkleblock.cpp +++ b/src/merkleblock.cpp @@ -59,7 +59,7 @@ uint256 CPartialMerkleTree::CalcHash(int height, unsigned int pos, const std::ve //if we do not have this assert, we can hit a memory access violation when indexing into vTxid assert(vTxid.size() != 0); if (height == 0) { - // hash at height 0 is the txids themself + // hash at height 0 is the txids themselves return vTxid[pos]; } else { // calculate left hash |