Skip to content

Commit fab893e

Browse files
author
MarcoFalke
committed
doc: Fix unrelated typos reported by codespell
1 parent 793e0ff commit fab893e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ if test x$use_hardening != xno; then
808808
fi
809809

810810
dnl These flags are specific to ld64, and may cause issues with other linkers.
811-
dnl For example: GNU ld will intepret -dead_strip as -de and then try and use
811+
dnl For example: GNU ld will interpret -dead_strip as -de and then try and use
812812
dnl "ad_strip" as the symbol for the entry point.
813813
if test x$TARGET_OS = xdarwin; then
814814
AX_CHECK_LINK_FLAG([[-Wl,-dead_strip]], [LDFLAGS="$LDFLAGS -Wl,-dead_strip"],, [[$LDFLAG_WERROR]])

src/psbt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ static constexpr uint8_t PSBT_OUT_BIP32_DERIVATION = 0x02;
4141
static constexpr uint8_t PSBT_SEPARATOR = 0x00;
4242

4343
// BIP 174 does not specify a maximum file size, but we set a limit anyway
44-
// to prevent reading a stream indefinately and running out of memory.
44+
// to prevent reading a stream indefinitely and running out of memory.
4545
const std::streamsize MAX_FILE_SIZE_PSBT = 100000000; // 100 MiB
4646

4747
/** A structure for PSBTs which contain per-input information */

src/qt/walletview.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ void WalletView::gotoLoadPSBT()
256256

257257
TransactionError result = BroadcastTransaction(*clientModel->node().context(), tx, err_string, DEFAULT_MAX_RAW_TX_FEE_RATE.GetFeePerK(), /* relay */ true, /* wait_callback */ false);
258258
if (result == TransactionError::OK) {
259-
Q_EMIT message(tr("Success"), tr("Broadcasted transaction sucessfully."), CClientUIInterface::MSG_INFORMATION | CClientUIInterface::MODAL);
259+
Q_EMIT message(tr("Success"), tr("Broadcasted transaction successfully."), CClientUIInterface::MSG_INFORMATION | CClientUIInterface::MODAL);
260260
} else {
261261
Q_EMIT message(tr("Error"), QString::fromStdString(err_string), CClientUIInterface::MSG_ERROR);
262262
}

src/rpc/mining.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ static bool getScriptFromDescriptor(const std::string& descriptor, CScript& scri
179179
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, strprintf("Cannot derive script without private keys"));
180180
}
181181

182-
// Combo desriptors can have 2 or 4 scripts, so we can't just check scripts.size() == 1
182+
// Combo descriptors can have 2 or 4 scripts, so we can't just check scripts.size() == 1
183183
CHECK_NONFATAL(scripts.size() > 0 && scripts.size() <= 4);
184184

185185
if (scripts.size() == 1) {

test/functional/rpc_getaddressinfo_label_deprecation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
55
"""
66
Test deprecation of the RPC getaddressinfo `label` field. It has been
7-
superceded by the `labels` field.
7+
superseded by the `labels` field.
88
99
"""
1010
from test_framework.test_framework import BitcoinTestFramework

0 commit comments

Comments
 (0)