Bitcoin Core 28.99.0
P2P Digital Currency
|
#include <interfaces/wallet.h>
#include <common/args.h>
#include <consensus/amount.h>
#include <interfaces/chain.h>
#include <interfaces/handler.h>
#include <node/types.h>
#include <policy/fees.h>
#include <primitives/transaction.h>
#include <rpc/server.h>
#include <scheduler.h>
#include <support/allocators/secure.h>
#include <sync.h>
#include <uint256.h>
#include <util/check.h>
#include <util/translation.h>
#include <util/ui_change_type.h>
#include <wallet/coincontrol.h>
#include <wallet/context.h>
#include <wallet/feebumper.h>
#include <wallet/fees.h>
#include <wallet/types.h>
#include <wallet/load.h>
#include <wallet/receive.h>
#include <wallet/rpc/wallet.h>
#include <wallet/spend.h>
#include <wallet/wallet.h>
#include <memory>
#include <string>
#include <utility>
#include <vector>
Go to the source code of this file.
Namespaces | |
namespace | wallet |
namespace | interfaces |
Functions | |
std::unique_ptr< Wallet > | interfaces::MakeWallet (wallet::WalletContext &context, const std::shared_ptr< wallet::CWallet > &wallet) |
Return implementation of Wallet interface. More... | |
std::unique_ptr< WalletLoader > | interfaces::MakeWalletLoader (Chain &chain, ArgsManager &args) |
Return implementation of ChainClient interface for a wallet loader. More... | |
WalletContext m_context |
Definition at line 563 of file interfaces.cpp.
std::list<CRPCCommand> m_rpc_commands |
Definition at line 699 of file interfaces.cpp.
std::vector<std::unique_ptr<Handler> > m_rpc_handlers |
Definition at line 698 of file interfaces.cpp.
std::shared_ptr<CWallet> m_wallet |
Definition at line 564 of file interfaces.cpp.
const std::vector<std::string> m_wallet_filenames |
Definition at line 697 of file interfaces.cpp.