![]() |
Bitcoin Core 29.99.0
P2P Digital Currency
|
#include <clientversion.h>
#include <streams.h>
#include <support/allocators/secure.h>
#include <util/fs.h>
#include <atomic>
#include <memory>
#include <optional>
#include <string>
Go to the source code of this file.
Classes | |
struct | wallet::BytePrefix |
class | wallet::DatabaseCursor |
class | wallet::DatabaseBatch |
RAII class that provides access to a WalletDatabase. More... | |
class | wallet::WalletDatabase |
An instance of this class represents one database. More... | |
struct | wallet::DatabaseOptions |
Namespaces | |
namespace | wallet |
Functions | |
bool | wallet::operator< (BytePrefix a, std::span< const std::byte > b) |
bool | wallet::operator< (std::span< const std::byte > a, BytePrefix b) |
std::vector< std::pair< fs::path, std::string > > | wallet::ListDatabases (const fs::path &path) |
Recursively list database paths in directory. More... | |
void | wallet::ReadDatabaseArgs (const ArgsManager &args, DatabaseOptions &options) |
std::unique_ptr< WalletDatabase > | wallet::MakeDatabase (const fs::path &path, const DatabaseOptions &options, DatabaseStatus &status, bilingual_str &error) |
fs::path | wallet::BDBDataFile (const fs::path &wallet_path) |
fs::path | wallet::SQLiteDataFile (const fs::path &path) |
bool | wallet::IsBDBFile (const fs::path &path) |
bool | wallet::IsSQLiteFile (const fs::path &path) |