diff options
| author | Veres Lajos <[email protected]> | 2015-08-09 00:17:27 +0100 |
|---|---|---|
| committer | Veres Lajos <[email protected]> | 2015-08-10 22:06:27 +0100 |
| commit | 9f68ed6b6d1a9c6436ce37913666165f2b180ee3 (patch) | |
| tree | 353f0c636a1f27824afb150fc16692456a00d5f1 /src/merkleblock.cpp | |
| parent | Revert "Assert on probable deadlocks if the second lock isnt try_lock" (diff) | |
| download | discoin-9f68ed6b6d1a9c6436ce37913666165f2b180ee3.tar.xz discoin-9f68ed6b6d1a9c6436ce37913666165f2b180ee3.zip | |
typofixes (found by misspell_fixer)
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 4d90fd8cd..f8e877df2 100644 --- a/src/merkleblock.cpp +++ b/src/merkleblock.cpp @@ -168,7 +168,7 @@ uint256 CPartialMerkleTree::ExtractMatches(std::vector<uint256> &vMatch) { // traverse the partial tree unsigned int nBitsUsed = 0, nHashUsed = 0; uint256 hashMerkleRoot = TraverseAndExtract(nHeight, 0, nBitsUsed, nHashUsed, vMatch); - // verify that no problems occured during the tree traversal + // verify that no problems occurred during the tree traversal if (fBad) return uint256(); // verify that all bits were consumed (except for the padding caused by serializing it as a byte sequence) |