|
|
@ -8,12 +8,17 @@ |
|
|
|
|
|
|
|
|
|
|
|
#include <string> |
|
|
|
#include <string> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CRPCTable; |
|
|
|
|
|
|
|
|
|
|
|
//! Return the wallets help message.
|
|
|
|
//! Return the wallets help message.
|
|
|
|
std::string GetWalletHelpString(bool showDebug); |
|
|
|
std::string GetWalletHelpString(bool showDebug); |
|
|
|
|
|
|
|
|
|
|
|
//! Wallets parameter interaction
|
|
|
|
//! Wallets parameter interaction
|
|
|
|
bool WalletParameterInteraction(); |
|
|
|
bool WalletParameterInteraction(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//! Register wallet RPCs.
|
|
|
|
|
|
|
|
void RegisterWalletRPC(CRPCTable &tableRPC); |
|
|
|
|
|
|
|
|
|
|
|
//! Responsible for reading and validating the -wallet arguments and verifying the wallet database.
|
|
|
|
//! Responsible for reading and validating the -wallet arguments and verifying the wallet database.
|
|
|
|
// This function will perform salvage on the wallet if requested, as long as only one wallet is
|
|
|
|
// This function will perform salvage on the wallet if requested, as long as only one wallet is
|
|
|
|
// being loaded (CWallet::ParameterInteraction forbids -salvagewallet, -zapwallettxes or -upgradewallet with multiwallet).
|
|
|
|
// being loaded (CWallet::ParameterInteraction forbids -salvagewallet, -zapwallettxes or -upgradewallet with multiwallet).
|
|
|
|