[init] Add mempooltxinputlimit and paymentdisclosure gArgs

This commit is contained in:
Jon Layton 2018-10-17 02:25:06 -05:00
parent e5364a42d6
commit 45922222ac
1 changed files with 3 additions and 0 deletions

View File

@ -87,6 +87,9 @@ void WalletInit::AddWalletOptions() const
gArgs.AddArg("-flushwallet", strprintf("Run a thread to flush wallet periodically (default: %u)", DEFAULT_FLUSHWALLET), true, OptionsCategory::WALLET_DEBUG_TEST);
gArgs.AddArg("-privdb", strprintf("Sets the DB_PRIVATE flag in the wallet db environment (default: %u)", DEFAULT_WALLET_PRIVDB), true, OptionsCategory::WALLET_DEBUG_TEST);
gArgs.AddArg("-walletrejectlongchains", strprintf("Wallet will not create transactions that violate mempool chain limits (default: %u)", DEFAULT_WALLET_REJECT_LONG_CHAINS), true, OptionsCategory::WALLET_DEBUG_TEST);
gArgs.AddArg("-mempooltxinputlimit=<n>", "Set the maximum number of transparent inputs in a transaction that the mempool will accept (default: 0 = no limit applied)", false, OptionsCategory::HIDDEN);
gArgs.AddArg("-paymentdisclosure", "Payment Disclosure describes a method of proving that a payment was sent to a shielded address. A sender can present a proof that they transferred funds to a recipient's shielded address.", false, OptionsCategory::HIDDEN);
}
bool WalletInit::ParameterInteraction() const