Skip to content

Commit fae38c3

Browse files
author
MarcoFalke
committed
doc: Fix all typos reported by codespell
1 parent fa9058f commit fae38c3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Configuration
7777
------------
7878

7979
* An error is issued where previously a warning was issued when a setting in
80-
the config file was specified in the default section, but not overriden for
80+
the config file was specified in the default section, but not overridden for
8181
the selected network. This change takes only effect if the selected network
8282
is not mainnet.
8383

src/validation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2803,7 +2803,7 @@ bool CChainState::InvalidateBlock(CValidationState& state, const CChainParams& c
28032803
bool ret = DisconnectTip(state, chainparams, &disconnectpool);
28042804
// DisconnectTip will add transactions to disconnectpool.
28052805
// Adjust the mempool to be consistent with the new tip, adding
2806-
// transactions back to the mempool if disconnecting was succesful,
2806+
// transactions back to the mempool if disconnecting was successful,
28072807
// and we're not doing a very deep invalidation (in which case
28082808
// keeping the mempool up to date is probably futile anyway).
28092809
UpdateMempoolForReorg(disconnectpool, /* fAddToMempool = */ (++disconnected <= 10) && ret);

test/functional/test_framework/test_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ def test_success(cmd):
369369
stderr=subprocess.DEVNULL, stdout=subprocess.DEVNULL) == 0
370370

371371
if not sys.platform.startswith('linux'):
372-
self.log.warning("Can't profile with perf; only availabe on Linux platforms")
372+
self.log.warning("Can't profile with perf; only available on Linux platforms")
373373
return None
374374

375375
if not test_success('which perf'):

test/functional/wallet_importmulti.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ def run_test(self):
759759
assert_equal(addr2, newaddr2)
760760

761761
# Import a multisig and make sure the keys don't go into the keypool
762-
self.log.info('Imported scripts with pubkeys shoud not have their pubkeys go into the keypool')
762+
self.log.info('Imported scripts with pubkeys should not have their pubkeys go into the keypool')
763763
addr1 = self.nodes[0].getnewaddress()
764764
addr2 = self.nodes[0].getnewaddress()
765765
pub1 = self.nodes[0].getaddressinfo(addr1)['pubkey']

0 commit comments

Comments
 (0)