aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikerah <[email protected]>2017-04-22 07:22:17 -0400
committerLuke Dashjr <[email protected]>2017-06-05 22:58:53 +0000
commitd2ec96909acc3eda76ee507456d8f3722a965921 (patch)
tree391b453329c7b4c4f37c47994be7f3d91821c94d
parentcontrib/init/bitcoind.openrcconf: Don't disable wallet by default (diff)
downloaddiscoin-d2ec96909acc3eda76ee507456d8f3722a965921.tar.xz
discoin-d2ec96909acc3eda76ee507456d8f3722a965921.zip
Fixed typo in documentation for merkleblock.h
Github-Pull: #10258 Rebased-From: dd07068d6b11e738bc954c998800b5660d160959
-rw-r--r--src/merkleblock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/merkleblock.h b/src/merkleblock.h
index 73cbf670e..de4c5c8d2 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.