Fabcoin Core  0.16.2
P2P Digital Currency
warnings.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2017 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 FABCOIN_WARNINGS_H
7 #define FABCOIN_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);
23 std::string GetWarnings(const std::string& strFor);
24 
25 static const bool DEFAULT_TESTSAFEMODE = false;
26 
27 #endif // FABCOIN_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