2016-11-30 03:07:42 -03:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2019-12-30 06:39:22 -03:00
|
|
|
// Copyright (c) 2009-2019 The Bitcoin Core developers
|
2016-11-30 03:07:42 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_WARNINGS_H
|
|
|
|
#define BITCOIN_WARNINGS_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
void SetMiscWarning(const std::string& strWarning);
|
|
|
|
void SetfLargeWorkForkFound(bool flag);
|
|
|
|
bool GetfLargeWorkForkFound();
|
|
|
|
void SetfLargeWorkInvalidChainFound(bool flag);
|
2017-07-18 09:11:18 -04:00
|
|
|
/** Format a string that describes several potential problems detected by the core.
|
2019-12-15 12:44:09 -03:00
|
|
|
* @param[in] verbose bool
|
|
|
|
* - if true, get all warnings, translated (where possible), separated by <hr />
|
|
|
|
* - if false, get the most important warning
|
|
|
|
* @returns the warning string
|
2017-07-18 09:11:18 -04:00
|
|
|
*/
|
2019-12-15 12:44:09 -03:00
|
|
|
std::string GetWarnings(bool verbose);
|
2016-11-30 03:07:42 -03:00
|
|
|
|
|
|
|
#endif // BITCOIN_WARNINGS_H
|