aboutsummaryrefslogtreecommitdiff
path: root/src/txmempool.h
diff options
context:
space:
mode:
authorBen Woosley <ben.woosley@gmail.com>2020-03-02 22:58:57 -0800
committerBen Woosley <ben.woosley@gmail.com>2020-03-02 23:07:21 -0800
commit9b0e16226e6c1fb6a3550d635339f1bbb49a852f (patch)
treead93a0a6b9ae2d7634d3e5f2fb50da71e05fa9c9 /src/txmempool.h
parentac5c5d0162a963be6fbaa53261c01705436a65f3 (diff)
downloadbitcoin-9b0e16226e6c1fb6a3550d635339f1bbb49a852f.tar.xz
doc: Correct spelling errors in comments
And ci script output. Identified via test/lint/lint-spelling
Diffstat (limited to 'src/txmempool.h')
-rw-r--r--src/txmempool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/txmempool.h b/src/txmempool.h
index de11d626b4..0de6f28777 100644
--- a/src/txmempool.h
+++ b/src/txmempool.h
@@ -753,7 +753,7 @@ public:
* determine if that transaction has not yet been visited during the current
* traversal's epoch.
* Algorithms using std::set can be replaced on a one by one basis.
- * Both techniques are not fundamentally incomaptible across the codebase.
+ * Both techniques are not fundamentally incompatible across the codebase.
* Generally speaking, however, the remaining use of std::set for mempool
* traversal should be viewed as a TODO for replacement with an epoch based
* traversal, rather than a preference for std::set over epochs in that