59@@ -60,7 +60,7 @@ void WalletInit::AddWalletOptions(ArgsManager& argsman) const
60 argsman.AddArg("-rescan", "Rescan the block chain for missing wallet transactions on startup", ArgsManager::ALLOW_ANY, OptionsCategory::WALLET);
61 argsman.AddArg("-spendzeroconfchange", strprintf("Spend unconfirmed change when sending transactions (default: %u)", DEFAULT_SPEND_ZEROCONF_CHANGE), ArgsManager::ALLOW_ANY, OptionsCategory::WALLET);
62 argsman.AddArg("-txconfirmtarget=<n>", strprintf("If paytxfee is not set, include enough fee so transactions begin confirmation on average within n blocks (default: %u)", DEFAULT_TX_CONFIRM_TARGET), ArgsManager::ALLOW_ANY, OptionsCategory::WALLET);
63- argsman.AddArg("-wallet=<path>", "Specify wallet database path. Can be specified multiple times to load multiple wallets. Path is interpreted relative to <walletdir> if it is not absolute, and will be created if it does not exist (as a directory containing a wallet.dat file and log files). For backwards compatibility this will also accept names of existing data files in <walletdir>.)", ArgsManager::ALLOW_ANY | ArgsManager::NETWORK_ONLY, OptionsCategory::WALLET);
64+ argsman.AddArg("-wallet=<path>", "Specify wallet path to load at startup. Can be specified multiple times to load multiple wallets. Path is interpreted relative to <walletdir> if it is not absolute as a directory containing wallet data and log files. For backwards compatibility this will also accept names of existing data files in <walletdir>.) This will only load existing wallets, not create new ones.", ArgsManager::ALLOW_ANY | ArgsManager::NETWORK_ONLY, OptionsCategory::WALLET);
-
dangling bracket: s/<walletdir>.)/<walletdir>./
(was originally present but may as well fix it)
-
maybe “Path is to a directory containing wallet data and log files. If the path is not absolute, it is interpreted as relative to <walletdir>
.”
-
mixed (inconsistent) verb tenses (present, then switches to future), consider s/this will also accept/this accepts/ and “This only loads existing wallets and does not create new ones.”
re: #20186 (review)
- dangling bracket:
s/<walletdir>.)/<walletdir>./
(was originally present but may as well fix it)
- maybe “Path is to a directory containing wallet data and log files. If the path is not absolute, it is interpreted as relative to
<walletdir>
.”
- mixed (inconsistent) verb tenses (present, then switches to future), consider s/this will also accept/this accepts/ and “This only loads existing wallets and does not create new ones.”
Thanks! Updated with all these changes