![]() |
Bitcoin ABC
0.22.12
P2P Digital Currency
|
#include <interfaces/wallet.h>
#include <amount.h>
#include <chainparams.h>
#include <config.h>
#include <consensus/validation.h>
#include <interfaces/chain.h>
#include <interfaces/handler.h>
#include <policy/fees.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/ref.h>
#include <util/system.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/rpcdump.h>
#include <wallet/wallet.h>
Go to the source code of this file.
Namespaces | |
interfaces | |
Functions | |
std::unique_ptr< Wallet > | interfaces::MakeWallet (const std::shared_ptr< CWallet > &wallet) |
Return implementation of Wallet interface. More... | |
std::unique_ptr< ChainClient > | interfaces::MakeWalletClient (Chain &chain, ArgsManager &args, std::vector< std::string > wallet_filenames) |
Return implementation of ChainClient interface for a wallet client. More... | |
WalletContext m_context |
Definition at line 519 of file wallet.cpp.
std::list<CRPCCommand> m_rpc_commands |
Definition at line 522 of file wallet.cpp.
std::vector<std::unique_ptr<Handler> > m_rpc_handlers |
Definition at line 521 of file wallet.cpp.
std::shared_ptr<CWallet> m_wallet |
Definition at line 464 of file wallet.cpp.
const std::vector<std::string> m_wallet_filenames |
Definition at line 520 of file wallet.cpp.