Skip to content

Commit 1eeeeab

Browse files
committed
Fix spelling in recent merges
1 parent 32fc14e commit 1eeeeab

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/cluster_linearize.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ class SearchCandidateFinder
671671
m_sorted_to_original(depgraph.TxCount()),
672672
m_original_to_sorted(depgraph.PositionRange())
673673
{
674-
// Determine reordering mapping, by sorting by decreasing feerate. Unusued positions are
674+
// Determine reordering mapping, by sorting by decreasing feerate. Unused positions are
675675
// not included, as they will never be looked up anyway.
676676
ClusterIndex sorted_pos{0};
677677
for (auto i : depgraph.Positions()) {

src/ipc/protocol.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class Protocol
5454
//! The optional `ready_fn` callback will be called after the event loop is
5555
//! created but before it is started. This can be useful in tests to trigger
5656
//! client connections from another thread as soon as the event loop is
57-
//! available, but should not be neccessary in normal code which starts
57+
//! available, but should not be necessary in normal code which starts
5858
//! clients and servers independently.
5959
virtual void serve(int fd, const char* exe_name, interfaces::Init& init, const std::function<void()>& ready_fn = {}) = 0;
6060

src/pow.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ bool PermittedDifficultyTransition(const Consensus::Params& params, int64_t heig
135135
}
136136

137137
// Bypasses the actual proof of work check during fuzz testing with a simplified validation checking whether
138-
// the most signficant bit of the last byte of the hash is set.
138+
// the most significant bit of the last byte of the hash is set.
139139
bool CheckProofOfWork(uint256 hash, unsigned int nBits, const Consensus::Params& params)
140140
{
141141
#ifdef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION

0 commit comments

Comments
 (0)