Fabcoin Core  0.16.2
P2P Digital Currency
rpcwallet.h
Go to the documentation of this file.
1 // Copyright (c)2016-2017 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 FABCOIN_WALLET_RPCWALLET_H
6 #define FABCOIN_WALLET_RPCWALLET_H
7 
8 class CRPCTable;
9 class JSONRPCRequest;
10 
12 
20 
21 std::string HelpRequiringPassphrase(CWallet *);
23 bool EnsureWalletIsAvailable(CWallet *, bool avoidException);
24 
25 #endif //FABCOIN_WALLET_RPCWALLET_H
Fabcoin RPC command dispatcher.
Definition: server.h:200
void EnsureWalletIsUnlocked(CWallet *)
Definition: rpcwallet.cpp:78
bool EnsureWalletIsAvailable(CWallet *, bool avoidException)
Definition: rpcwallet.cpp:61
void RegisterWalletRPCCommands(CRPCTable &t)
Definition: rpcwallet.cpp:3705
A CWallet is an extension of a keystore, which also maintains a set of transactions and balances...
Definition: wallet.h:672
CWallet * GetWalletForJSONRPCRequest(const JSONRPCRequest &request)
Figures out what wallet, if any, to use for a JSONRPCRequest.
Definition: rpcwallet.cpp:41
std::string HelpRequiringPassphrase(CWallet *)
Definition: rpcwallet.cpp:56