dummywallet: Reformat ignored wallet options list
This commit is contained in:
parent
bdd7217f2c
commit
0f09eb779d
1 changed files with 26 additions and 5 deletions
|
@ -23,11 +23,32 @@ public:
|
||||||
|
|
||||||
void DummyWalletInit::AddWalletOptions() const
|
void DummyWalletInit::AddWalletOptions() const
|
||||||
{
|
{
|
||||||
std::vector<std::string> opts = {"-addresstype", "-changetype", "-disablewallet", "-discardfee=<amt>", "-fallbackfee=<amt>",
|
gArgs.AddHiddenArgs({
|
||||||
"-keypool=<n>", "-maxtxfee=<amt>", "-mintxfee=<amt>", "-paytxfee=<amt>", "-rescan", "-salvagewallet", "-spendzeroconfchange", "-txconfirmtarget=<n>",
|
"-addresstype",
|
||||||
"-upgradewallet", "-wallet=<path>", "-walletbroadcast", "-walletdir=<dir>", "-walletnotify=<cmd>", "-walletrbf", "-zapwallettxes=<mode>",
|
"-changetype",
|
||||||
"-dblogsize=<n>", "-flushwallet", "-privdb", "-walletrejectlongchains"};
|
"-disablewallet",
|
||||||
gArgs.AddHiddenArgs(opts);
|
"-discardfee=<amt>",
|
||||||
|
"-fallbackfee=<amt>",
|
||||||
|
"-keypool=<n>",
|
||||||
|
"-maxtxfee=<amt>",
|
||||||
|
"-mintxfee=<amt>",
|
||||||
|
"-paytxfee=<amt>",
|
||||||
|
"-rescan",
|
||||||
|
"-salvagewallet",
|
||||||
|
"-spendzeroconfchange",
|
||||||
|
"-txconfirmtarget=<n>",
|
||||||
|
"-upgradewallet",
|
||||||
|
"-wallet=<path>",
|
||||||
|
"-walletbroadcast",
|
||||||
|
"-walletdir=<dir>",
|
||||||
|
"-walletnotify=<cmd>",
|
||||||
|
"-walletrbf",
|
||||||
|
"-zapwallettxes=<mode>",
|
||||||
|
"-dblogsize=<n>",
|
||||||
|
"-flushwallet",
|
||||||
|
"-privdb",
|
||||||
|
"-walletrejectlongchains",
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const WalletInitInterface& g_wallet_init_interface = DummyWalletInit();
|
const WalletInitInterface& g_wallet_init_interface = DummyWalletInit();
|
||||||
|
|
Loading…
Reference in a new issue