mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Merge #17648: doc: rename wallet-tool references to bitcoin-wallet
e7ad4a2f8c
doc: rename wallet-tool references to bitcoin-wallet (Wilson Ccasihue S) Pull request description: Fix. text reference to executable bitcoin-wallet instead of wallet-tool, there is not a wallet-tool at bin/ folder. ACKs for top commit: fanquake: ACKe7ad4a2f8c
- thanks for following up. Tree-SHA512: aed41b08947728a4ff3a97a62858ee7c86e2e5d57dcbbd0aab492dae3d8a548bb60541924e68cf3a0aa3d53d7db0012b489462b466919cd83f05b2aa88b7fff7
This commit is contained in:
commit
dcbe024f5e
2 changed files with 4 additions and 4 deletions
|
@ -41,8 +41,8 @@ static bool WalletAppInit(int argc, char* argv[])
|
||||||
}
|
}
|
||||||
if (argc < 2 || HelpRequested(gArgs)) {
|
if (argc < 2 || HelpRequested(gArgs)) {
|
||||||
std::string usage = strprintf("%s bitcoin-wallet version", PACKAGE_NAME) + " " + FormatFullVersion() + "\n\n" +
|
std::string usage = strprintf("%s bitcoin-wallet version", PACKAGE_NAME) + " " + FormatFullVersion() + "\n\n" +
|
||||||
"wallet-tool is an offline tool for creating and interacting with Bitcoin Core wallet files.\n" +
|
"bitcoin-wallet is an offline tool for creating and interacting with Bitcoin Core wallet files.\n" +
|
||||||
"By default wallet-tool will act on wallets in the default mainnet wallet directory in the datadir.\n" +
|
"By default bitcoin-wallet will act on wallets in the default mainnet wallet directory in the datadir.\n" +
|
||||||
"To change the target wallet, use the -datadir, -wallet and -testnet/-regtest arguments.\n\n" +
|
"To change the target wallet, use the -datadir, -wallet and -testnet/-regtest arguments.\n\n" +
|
||||||
"Usage:\n" +
|
"Usage:\n" +
|
||||||
" bitcoin-wallet [options] <command>\n\n" +
|
" bitcoin-wallet [options] <command>\n\n" +
|
||||||
|
|
|
@ -822,7 +822,7 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn, bool fFlushOnClose)
|
||||||
|
|
||||||
void CWallet::LoadToWallet(CWalletTx& wtxIn)
|
void CWallet::LoadToWallet(CWalletTx& wtxIn)
|
||||||
{
|
{
|
||||||
// If wallet doesn't have a chain (e.g wallet-tool), lock can't be taken.
|
// If wallet doesn't have a chain (e.g bitcoin-wallet), lock can't be taken.
|
||||||
auto locked_chain = LockChain();
|
auto locked_chain = LockChain();
|
||||||
if (locked_chain) {
|
if (locked_chain) {
|
||||||
Optional<int> block_height = locked_chain->getBlockHeight(wtxIn.m_confirm.hashBlock);
|
Optional<int> block_height = locked_chain->getBlockHeight(wtxIn.m_confirm.hashBlock);
|
||||||
|
@ -2944,7 +2944,7 @@ DBErrors CWallet::LoadWallet(bool& fFirstRunRet)
|
||||||
{
|
{
|
||||||
// Even if we don't use this lock in this function, we want to preserve
|
// Even if we don't use this lock in this function, we want to preserve
|
||||||
// lock order in LoadToWallet if query of chain state is needed to know
|
// lock order in LoadToWallet if query of chain state is needed to know
|
||||||
// tx status. If lock can't be taken (e.g wallet-tool), tx confirmation
|
// tx status. If lock can't be taken (e.g bitcoin-wallet), tx confirmation
|
||||||
// status may be not reliable.
|
// status may be not reliable.
|
||||||
auto locked_chain = LockChain();
|
auto locked_chain = LockChain();
|
||||||
LOCK(cs_wallet);
|
LOCK(cs_wallet);
|
||||||
|
|
Loading…
Reference in a new issue