Remove duplicate include
[bitcoinplatinum.git] / src / warnings.h
bloba7aa6574264c157ab767e88a273b7fda0d125618
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.
6 #ifndef BITCOIN_WARNINGS_H
7 #define BITCOIN_WARNINGS_H
9 #include <stdlib.h>
10 #include <string>
12 void SetMiscWarning(const std::string& strWarning);
13 void SetfLargeWorkForkFound(bool flag);
14 bool GetfLargeWorkForkFound();
15 void SetfLargeWorkInvalidChainFound(bool flag);
16 bool GetfLargeWorkInvalidChainFound();
17 std::string GetWarnings(const std::string& strFor);
19 static const bool DEFAULT_TESTSAFEMODE = false;
21 #endif // BITCOIN_WARNINGS_H