Bitcoin ABC 0.30.5
P2P Digital Currency
|
#include <interfaces/wallet.h>
#include <chainparams.h>
#include <common/args.h>
#include <config.h>
#include <consensus/amount.h>
#include <consensus/validation.h>
#include <interfaces/chain.h>
#include <interfaces/handler.h>
#include <primitives/transaction.h>
#include <rpc/server.h>
#include <script/standard.h>
#include <support/allocators/secure.h>
#include <sync.h>
#include <util/check.h>
#include <util/ui_change_type.h>
#include <wallet/context.h>
#include <wallet/fees.h>
#include <wallet/ismine.h>
#include <wallet/load.h>
#include <wallet/receive.h>
#include <wallet/rpc/backup.h>
#include <wallet/rpc/encrypt.h>
#include <wallet/spend.h>
#include <wallet/wallet.h>
Go to the source code of this file.
Namespaces | |
namespace | wallet |
namespace | interfaces |
Functions | |
std::unique_ptr< Wallet > | interfaces::MakeWallet (const std::shared_ptr< CWallet > &wallet) |
Return implementation of Wallet interface. More... | |
std::unique_ptr< WalletClient > | interfaces::MakeWalletClient (Chain &chain, ArgsManager &args) |
Return implementation of ChainClient interface for a wallet client. More... | |
WalletContext m_context |
Definition at line 568 of file interfaces.cpp.
std::list<CRPCCommand> m_rpc_commands |
Definition at line 571 of file interfaces.cpp.
std::vector<std::unique_ptr<Handler> > m_rpc_handlers |
Definition at line 570 of file interfaces.cpp.
std::shared_ptr<CWallet> m_wallet |
Definition at line 475 of file interfaces.cpp.
const std::vector<std::string> m_wallet_filenames |
Definition at line 569 of file interfaces.cpp.