Bitcoin
validation.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2019 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_UTIL_VALIDATION_H
7 #define BITCOIN_UTIL_VALIDATION_H
8 
9 #include <string>
10 
11 class CValidationState;
12 
14 std::string FormatStateMessage(const CValidationState &state);
15 
16 extern const std::string strMessageMagic;
17 
18 #endif // BITCOIN_UTIL_VALIDATION_H
Definition: validation.h:98
const std::string strMessageMagic
Definition: validation.cpp:20
std::string FormatStateMessage(const CValidationState &state)
Definition: validation.cpp:12