Bitcoin Core 22.99.0
P2P Digital Currency
dump.h
Go to the documentation of this file.
1// Copyright (c) 2020 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 BITCOIN_WALLET_DUMP_H
6#define BITCOIN_WALLET_DUMP_H
7
8#include <fs.h>
9
10class CWallet;
11
12struct bilingual_str;
13
15bool CreateFromDump(const std::string& name, const fs::path& wallet_path, bilingual_str& error, std::vector<bilingual_str>& warnings);
16
17#endif // BITCOIN_WALLET_DUMP_H
A CWallet maintains a set of transactions and balances, and provides the ability to create new transa...
Definition: wallet.h:229
Path class wrapper to prepare application code for transition from boost::filesystem library to std::...
Definition: fs.h:34
bool CreateFromDump(const std::string &name, const fs::path &wallet_path, bilingual_str &error, std::vector< bilingual_str > &warnings)
Definition: dump.cpp:108
bool DumpWallet(CWallet &wallet, bilingual_str &error)
Definition: dump.cpp:13
const char * name
Definition: rest.cpp:43
Bilingual messages:
Definition: translation.h:16
bool error(const char *fmt, const Args &... args)
Definition: system.h:49