BSHA3  0.17.99
P2P Blockchain, based on Bitcoin
warnings.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2018 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_WARNINGS_H
7 #define BITCOIN_WARNINGS_H
8 
9 #include <stdlib.h>
10 #include <string>
11 
12 void SetMiscWarning(const std::string& strWarning);
13 void SetfLargeWorkForkFound(bool flag);
15 void SetfLargeWorkInvalidChainFound(bool flag);
22 std::string GetWarnings(const std::string& strFor);
23 
24 #endif // BITCOIN_WARNINGS_H
void SetfLargeWorkForkFound(bool flag)
Definition: warnings.cpp:22
std::string GetWarnings(const std::string &strFor)
Format a string that describes several potential problems detected by the core.
Definition: warnings.cpp:40
bool GetfLargeWorkForkFound()
Definition: warnings.cpp:28
void SetMiscWarning(const std::string &strWarning)
Definition: warnings.cpp:16
void SetfLargeWorkInvalidChainFound(bool flag)
Definition: warnings.cpp:34