aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.cpp
diff options
context:
space:
mode:
authorDimitris Tsapakidis <dimitris@tsapakidis.com>2022-10-08 21:27:48 +0300
committerDimitris Tsapakidis <dtsapakidis@dtsapakidis-in-mbp.fritz.box>2022-10-09 17:19:59 +0300
commitadb1714426365fb72f73097610ba217ac94ea560 (patch)
tree2fbf5fdbe4102bebb157754a23247d0c988e481c /src/wallet/wallet.cpp
parent73b61717a977fc9d23f1bae3f8620641a9dee1f3 (diff)
Fix comment typos in scriptpubkeyman.cpp, wallet.cpp, wallet.h
Fix comment typos: sigature -> signature ponter -> pointer it's key -> its key
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 5889de2e36..09870d5ade 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -124,7 +124,7 @@ bool RemoveWallet(WalletContext& context, const std::shared_ptr<CWallet>& wallet
interfaces::Chain& chain = wallet->chain();
std::string name = wallet->GetName();
- // Unregister with the validation interface which also drops shared ponters.
+ // Unregister with the validation interface which also drops shared pointers.
wallet->m_chain_notifications_handler.reset();
LOCK(context.wallets_mutex);
std::vector<std::shared_ptr<CWallet>>::iterator i = std::find(context.wallets.begin(), context.wallets.end(), wallet);