| 24 | }; |
| 25 | |
| 26 | void DummyWalletInit::AddWalletOptions(ArgsManager& argsman) const |
| 27 | { |
| 28 | argsman.AddHiddenArgs({ |
| 29 | "-addresstype", |
| 30 | "-avoidpartialspends", |
| 31 | "-changetype", |
| 32 | "-consolidatefeerate=<amt>", |
| 33 | "-disablewallet", |
| 34 | "-discardfee=<amt>", |
| 35 | "-fallbackfee=<amt>", |
| 36 | "-keypool=<n>", |
| 37 | "-maxapsfee=<n>", |
| 38 | "-maxtxfee=<amt>", |
| 39 | "-mintxfee=<amt>", |
| 40 | "-paytxfee=<amt>", |
| 41 | "-signer=<cmd>", |
| 42 | "-spendzeroconfchange", |
| 43 | "-txconfirmtarget=<n>", |
| 44 | "-wallet=<path>", |
| 45 | "-walletbroadcast", |
| 46 | "-walletdir=<dir>", |
| 47 | "-walletnotify=<cmd>", |
| 48 | "-walletrbf", |
| 49 | "-dblogsize=<n>", |
| 50 | "-flushwallet", |
| 51 | "-privdb", |
| 52 | "-walletrejectlongchains", |
| 53 | "-unsafesqlitesync", |
| 54 | }); |
| 55 | } |
| 56 | |
| 57 | const WalletInitInterface& g_wallet_init_interface = DummyWalletInit(); |
| 58 |
no test coverage detected