mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-05-22 09:50:49 +02:00
Merge bitcoin/bitcoin#26284: Fix comment typos
adb1714426365fb72f73097610ba217ac94ea560 Fix comment typos in scriptpubkeyman.cpp, wallet.cpp, wallet.h (Dimitris Tsapakidis) Pull request description: Fixes a number of comment typos found in the code. Top commit has no ACKs. Tree-SHA512: c2c996b66d33ecf0ee734b76303a0f2444e184d2f3ff6931768712ca51011ad51e54336c33a2ff55133766d20ae6adcbb14ddc754dde58b1fe9167d68f54fec5
This commit is contained in:
commit
9f44f2e32f
@ -586,7 +586,7 @@ bool LegacyScriptPubKeyMan::CanProvide(const CScript& script, SignatureData& sig
|
|||||||
// or solving information, even if not able to sign fully.
|
// or solving information, even if not able to sign fully.
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
// If, given the stuff in sigdata, we could make a valid sigature, then we can provide for this script
|
// If, given the stuff in sigdata, we could make a valid signature, then we can provide for this script
|
||||||
ProduceSignature(*this, DUMMY_SIGNATURE_CREATOR, script, sigdata);
|
ProduceSignature(*this, DUMMY_SIGNATURE_CREATOR, script, sigdata);
|
||||||
if (!sigdata.signatures.empty()) {
|
if (!sigdata.signatures.empty()) {
|
||||||
// If we could make signatures, make sure we have a private key to actually make a signature
|
// If we could make signatures, make sure we have a private key to actually make a signature
|
||||||
|
@ -124,7 +124,7 @@ bool RemoveWallet(WalletContext& context, const std::shared_ptr<CWallet>& wallet
|
|||||||
interfaces::Chain& chain = wallet->chain();
|
interfaces::Chain& chain = wallet->chain();
|
||||||
std::string name = wallet->GetName();
|
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();
|
wallet->m_chain_notifications_handler.reset();
|
||||||
LOCK(context.wallets_mutex);
|
LOCK(context.wallets_mutex);
|
||||||
std::vector<std::shared_ptr<CWallet>>::iterator i = std::find(context.wallets.begin(), context.wallets.end(), wallet);
|
std::vector<std::shared_ptr<CWallet>>::iterator i = std::find(context.wallets.begin(), context.wallets.end(), wallet);
|
||||||
|
@ -195,7 +195,7 @@ public:
|
|||||||
util::Result<CTxDestination> GetReservedDestination(bool internal);
|
util::Result<CTxDestination> GetReservedDestination(bool internal);
|
||||||
//! Return reserved address
|
//! Return reserved address
|
||||||
void ReturnDestination();
|
void ReturnDestination();
|
||||||
//! Keep the address. Do not return it's key to the keypool when this object goes out of scope
|
//! Keep the address. Do not return its key to the keypool when this object goes out of scope
|
||||||
void KeepDestination();
|
void KeepDestination();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user