From 2de1ceb2e9180d40611a6d32b3a9470c242952e0 Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Sat, 13 Nov 2021 01:43:17 +0200 Subject: [PATCH] depends, wallet: fix typos --- depends/Makefile | 2 +- src/wallet/test/fuzz/notifications.cpp | 2 +- test/functional/wallet_multisig_descriptor_psbt.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/depends/Makefile b/depends/Makefile index a3b9cd20991..3dc99cc1215 100644 --- a/depends/Makefile +++ b/depends/Makefile @@ -115,7 +115,7 @@ include builders/default.mk include packages/packages.mk # Previously, we directly invoked the well-known programs using $(shell ...) -# to contruct build_id_string. However, that was problematic because: +# to construct build_id_string. However, that was problematic because: # # 1. When invoking a shell, GNU Make special-cases exit code 127 (command not # found) by not capturing the output but instead passing it through. This is diff --git a/src/wallet/test/fuzz/notifications.cpp b/src/wallet/test/fuzz/notifications.cpp index 252832785b7..e8b49f12202 100644 --- a/src/wallet/test/fuzz/notifications.cpp +++ b/src/wallet/test/fuzz/notifications.cpp @@ -100,7 +100,7 @@ FUZZ_TARGET_INIT(wallet_notifications, initialize_setup) using Coins = std::set>; std::vector> chain; { - // Add the inital entry + // Add the initial entry chain.emplace_back(); auto& [coins, block]{chain.back()}; coins.emplace(total_amount, COutPoint{uint256::ONE, 1}); diff --git a/test/functional/wallet_multisig_descriptor_psbt.py b/test/functional/wallet_multisig_descriptor_psbt.py index ed855d2525b..64799fccdab 100755 --- a/test/functional/wallet_multisig_descriptor_psbt.py +++ b/test/functional/wallet_multisig_descriptor_psbt.py @@ -85,7 +85,7 @@ class WalletMultisigDescriptorPSBTTest(BitcoinTestFramework): # This wallet will be the participant's `signer` for the resulting multisig. Avoid reusing this wallet for any other purpose (for privacy reasons). "signers": [node.get_wallet_rpc(node.createwallet(wallet_name=f"participant_{self.nodes.index(node)}", descriptors=True)["name"]) for node in self.nodes], # After participants generate and exchange their xpubs they will each create their own watch-only multisig. - # Note: these multisigs are all the same, this justs highlights that each participant can independently verify everything on their own node. + # Note: these multisigs are all the same, this just highlights that each participant can independently verify everything on their own node. "multisigs": [] }