aboutsummaryrefslogtreecommitdiff
path: root/src/validation.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2017-03-21 19:49:08 +0100
committerpracticalswift <practicalswift@users.noreply.github.com>2017-03-21 19:49:08 +0100
commitdbf30ff10f76d2ab9114b345e8712cba30a8d282 (patch)
tree113b54b12a394382eee95bf40120009b2d143b0a /src/validation.cpp
parent0c17afcbe73ec546bc63aea34639fa0f4ea45c37 (diff)
downloadbitcoin-dbf30ff10f76d2ab9114b345e8712cba30a8d282.tar.xz
[trivial] Fix typos in comments
Diffstat (limited to 'src/validation.cpp')
-rw-r--r--src/validation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.cpp b/src/validation.cpp
index be82026b3c..037b9c0abc 100644
--- a/src/validation.cpp
+++ b/src/validation.cpp
@@ -3152,7 +3152,7 @@ static bool AcceptBlock(const std::shared_ptr<const CBlock>& pblock, CValidation
bool fTooFarAhead = (pindex->nHeight > int(chainActive.Height() + MIN_BLOCKS_TO_KEEP));
// TODO: Decouple this function from the block download logic by removing fRequested
- // This requires some new chain datastructure to efficiently look up if a
+ // This requires some new chain data structure to efficiently look up if a
// block is in a chain leading to a candidate for best tip, despite not
// being such a candidate itself.