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