diff options
| author | MarcoFalke <[email protected]> | 2019-06-11 11:58:02 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-06-11 11:58:02 -0400 |
| commit | 206c30f6d7ff9fbcdb0f0b882e8da54870f8ee73 (patch) | |
| tree | e562b2cc0dd810c95b24134c35060f7da10fda99 /src/dummywallet.cpp | |
| parent | build: Bump version to -final (diff) | |
| download | discoin-206c30f6d7ff9fbcdb0f0b882e8da54870f8ee73.tar.xz discoin-206c30f6d7ff9fbcdb0f0b882e8da54870f8ee73.zip | |
dummywallet: Reformat ignored wallet options list
Diffstat (limited to 'src/dummywallet.cpp')
| -rw-r--r-- | src/dummywallet.cpp | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/src/dummywallet.cpp b/src/dummywallet.cpp index 8a76021a5..1520474e9 100644 --- a/src/dummywallet.cpp +++ b/src/dummywallet.cpp @@ -23,10 +23,31 @@ public: void DummyWalletInit::AddWalletOptions() const { - std::vector<std::string> opts = {"-addresstype", "-changetype", "-disablewallet", "-discardfee=<amt>", "-fallbackfee=<amt>", - "-keypool=<n>", "-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"}; + std::vector<std::string> opts = { + "-addresstype", + "-changetype", + "-disablewallet", + "-discardfee=<amt>", + "-fallbackfee=<amt>", + "-keypool=<n>", + "-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", + }; gArgs.AddHiddenArgs(opts); } |