Bitcoin Core 22.99.0
P2P Digital Currency
salvage.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-2020 The Bitcoin Core developers
3// Distributed under the MIT software license, see the accompanying
4// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef BITCOIN_WALLET_SALVAGE_H
7#define BITCOIN_WALLET_SALVAGE_H
8
9#include <fs.h>
10#include <streams.h>
11
12struct bilingual_str;
13
14bool RecoverDatabaseFile(const fs::path& file_path, bilingual_str& error, std::vector<bilingual_str>& warnings);
15
16#endif // BITCOIN_WALLET_SALVAGE_H
Path class wrapper to prepare application code for transition from boost::filesystem library to std::...
Definition: fs.h:34
bool RecoverDatabaseFile(const fs::path &file_path, bilingual_str &error, std::vector< bilingual_str > &warnings)
Definition: salvage.cpp:25
Bilingual messages:
Definition: translation.h:16
bool error(const char *fmt, const Args &... args)
Definition: system.h:49