Raven Core  3.0.0
P2P Digital Currency
rpcwallet.h
Go to the documentation of this file.
1 // Copyright (c) 2016 The Bitcoin Core developers
2 // Copyright (c) 2017-2019 The Raven Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef RAVEN_WALLET_RPCWALLET_H
7 #define RAVEN_WALLET_RPCWALLET_H
8 
9 #include <string>
10 
11 class CRPCTable;
12 class CWallet;
13 class JSONRPCRequest;
14 
16 
24 
25 std::string HelpRequiringPassphrase(CWallet *);
27 bool EnsureWalletIsAvailable(CWallet *, bool avoidException);
28 
29 #endif //RAVEN_WALLET_RPCWALLET_H
Raven RPC command dispatcher.
Definition: server.h:143
void EnsureWalletIsUnlocked(CWallet *)
Definition: rpcwallet.cpp:80
bool EnsureWalletIsAvailable(CWallet *, bool avoidException)
Definition: rpcwallet.cpp:63
void RegisterWalletRPCCommands(CRPCTable &t)
Definition: rpcwallet.cpp:3398
A CWallet is an extension of a keystore, which also maintains a set of transactions and balances...
Definition: wallet.h:673
CWallet * GetWalletForJSONRPCRequest(const JSONRPCRequest &request)
Figures out what wallet, if any, to use for a JSONRPCRequest.
Definition: rpcwallet.cpp:40
std::string HelpRequiringPassphrase(CWallet *)
Definition: rpcwallet.cpp:56