aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2017-04-23 16:49:23 +0200
committerMarcoFalke <falke.marco@gmail.com>2017-04-23 16:49:53 +0200
commited22eb4a62bd8d5369aaec87d4cbdc03c9f16368 (patch)
tree9aaec8b4915597b0a23ec5e1eb56e765c42084a9 /src
parentf8feaa4636260b599294c7285bcf1c8b7737f74e (diff)
parentdd07068d6b11e738bc954c998800b5660d160959 (diff)
downloadbitcoin-ed22eb4a62bd8d5369aaec87d4cbdc03c9f16368.tar.xz
Merge #10258: Fixed typo in documentation for merkleblock.h
dd07068 Fixed typo in documentation for merkleblock.h (Mikerah) Tree-SHA512: 92655c8022eb33852c116da517b12bd17b3b668713cd85fe185a15245ea9810605626b1d0955fa117f7b56863e0a52b3a86dab42409332452b5eb72a7d34f30d
Diffstat (limited to 'src')
-rw-r--r--src/merkleblock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/merkleblock.h b/src/merkleblock.h
index 73cbf670ee..de4c5c8d29 100644
--- a/src/merkleblock.h
+++ b/src/merkleblock.h
@@ -23,7 +23,7 @@
* storing a bit for each traversed node, signifying whether the node is the
* parent of at least one matched leaf txid (or a matched txid itself). In
* case we are at the leaf level, or this bit is 0, its merkle node hash is
- * stored, and its children are not explorer further. Otherwise, no hash is
+ * stored, and its children are not explored further. Otherwise, no hash is
* stored, but we recurse into both (or the only) child branch. During
* decoding, the same depth-first traversal is performed, consuming bits and
* hashes as they written during encoding.