Dash Core Source Documentation (0.16.0.1)

Find detailed information regarding the Dash Core source code.

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);
23 std::string GetWarnings(const std::string& strFor);
24 
25 static const bool DEFAULT_TESTSAFEMODE = false;
26 
27 #endif // BITCOIN_WARNINGS_H
void SetfLargeWorkForkFound(bool flag)
Definition: warnings.cpp:23
std::string GetWarnings(const std::string &strFor)
Format a string that describes several potential problems detected by the core.
Definition: warnings.cpp:41
bool GetfLargeWorkForkFound()
Definition: warnings.cpp:29
static const bool DEFAULT_TESTSAFEMODE
Definition: warnings.h:25
void SetMiscWarning(const std::string &strWarning)
Definition: warnings.cpp:17
void SetfLargeWorkInvalidChainFound(bool flag)
Definition: warnings.cpp:35
Released under the MIT license