Skip to content

Commit 2de1ceb

Browse files
committed
depends, wallet: fix typos
1 parent 5cc083c commit 2de1ceb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

depends/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ include builders/default.mk
115115
include packages/packages.mk
116116

117117
# Previously, we directly invoked the well-known programs using $(shell ...)
118-
# to contruct build_id_string. However, that was problematic because:
118+
# to construct build_id_string. However, that was problematic because:
119119
#
120120
# 1. When invoking a shell, GNU Make special-cases exit code 127 (command not
121121
# found) by not capturing the output but instead passing it through. This is

src/wallet/test/fuzz/notifications.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ FUZZ_TARGET_INIT(wallet_notifications, initialize_setup)
100100
using Coins = std::set<std::tuple<CAmount, COutPoint>>;
101101
std::vector<std::tuple<Coins, CBlock>> chain;
102102
{
103-
// Add the inital entry
103+
// Add the initial entry
104104
chain.emplace_back();
105105
auto& [coins, block]{chain.back()};
106106
coins.emplace(total_amount, COutPoint{uint256::ONE, 1});

test/functional/wallet_multisig_descriptor_psbt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def run_test(self):
8585
# This wallet will be the participant's `signer` for the resulting multisig. Avoid reusing this wallet for any other purpose (for privacy reasons).
8686
"signers": [node.get_wallet_rpc(node.createwallet(wallet_name=f"participant_{self.nodes.index(node)}", descriptors=True)["name"]) for node in self.nodes],
8787
# After participants generate and exchange their xpubs they will each create their own watch-only multisig.
88-
# Note: these multisigs are all the same, this justs highlights that each participant can independently verify everything on their own node.
88+
# Note: these multisigs are all the same, this just highlights that each participant can independently verify everything on their own node.
8989
"multisigs": []
9090
}
9191

0 commit comments

Comments
 (0)