Dogecoin Core  1.14.2
P2P Digital Currency
warnings.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2016 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);
17 std::string GetWarnings(const std::string& strFor);
18 
19 static const bool DEFAULT_TESTSAFEMODE = false;
20 
21 #endif // BITCOIN_WARNINGS_H
void SetfLargeWorkInvalidChainFound(bool flag)
Definition: warnings.cpp:39
void SetfLargeWorkForkFound(bool flag)
Definition: warnings.cpp:27
bool GetfLargeWorkForkFound()
Definition: warnings.cpp:33
std::string GetWarnings(const std::string &strFor)
Format a string that describes several potential problems detected by the core.
Definition: warnings.cpp:51
bool GetfLargeWorkInvalidChainFound()
Definition: warnings.cpp:45
void SetMiscWarning(const std::string &strWarning)
Definition: warnings.cpp:21