diff --git a/src/wallet/init.cpp b/src/wallet/init.cpp index a299a4ee4..64927a41a 100644 --- a/src/wallet/init.cpp +++ b/src/wallet/init.cpp @@ -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=", "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