Dash Core Source Documentation (0.16.0.1)

Find detailed information regarding the Dash Core source code.

rpcwallet.h
Go to the documentation of this file.
1 // Copyright (c) 2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_WALLET_RPCWALLET_H
6 #define BITCOIN_WALLET_RPCWALLET_H
7 
8 #include <string>
9 
10 class CRPCTable;
11 class CWallet;
12 class JSONRPCRequest;
13 
15 
23 
24 std::string HelpRequiringPassphrase(CWallet *);
26 bool EnsureWalletIsAvailable(CWallet *, bool avoidException);
27 
28 #endif //BITCOIN_WALLET_RPCWALLET_H
Dash RPC command dispatcher.
Definition: server.h:140
void EnsureWalletIsUnlocked(CWallet *)
Definition: rpcwallet.cpp:83
bool EnsureWalletIsAvailable(CWallet *, bool avoidException)
Definition: rpcwallet.cpp:66
void RegisterWalletRPCCommands(CRPCTable &t)
Definition: rpcwallet.cpp:3588
A CWallet is an extension of a keystore, which also maintains a set of transactions and balances...
Definition: wallet.h:715
CWallet * GetWalletForJSONRPCRequest(const JSONRPCRequest &request)
Figures out what wallet, if any, to use for a JSONRPCRequest.
Definition: rpcwallet.cpp:45
std::string HelpRequiringPassphrase(CWallet *)
Definition: rpcwallet.cpp:59
Released under the MIT license