Lots of files ended up with indirect includes from script.h.
@ -8,6 +8,7 @@
#include "core.h"
#include "pow.h"
#include "tinyformat.h"
#include "uint256.h"
#include <vector>
@ -7,6 +7,7 @@
#include "random.h"
#include "util.h"
#include "utilstrencodings.h"
#include <assert.h>
@ -5,7 +5,9 @@
#include "hash.h"
std::string COutPoint::ToString() const
{
@ -9,6 +9,8 @@
#include "serialize.h"
#include "univalue/univalue.h"
#include "version.h"
#include <boost/algorithm/string/classification.hpp>
#include <boost/algorithm/string/predicate.hpp>
@ -12,6 +12,7 @@
#include "utilmoneystr.h"
#include <boost/foreach.hpp>
@ -20,6 +20,7 @@
#include "script/sigcache.h"
#include "script/standard.h"
#include "sync.h"
#include "txmempool.h"
#include "chainparams.h"
#ifndef WIN32
# include <arpa/inet.h>
#include "paymentrequestdata.h"
#include <openssl/x509.h>
#include <openssl/x509_vfy.h>
@ -4,6 +4,8 @@
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "compressor.h"
#include "key.h"
bool CScriptCompressor::IsToKeyID(CKeyID &hash) const
@ -7,7 +7,10 @@
#define H_BITCOIN_SCRIPT_COMPRESSOR
#include "script/script.h"
class CKeyID;
class CPubKey;
class CScriptID;
/** Compact serializer for scripts.
@ -9,6 +9,7 @@
#include "crypto/ripemd160.h"
#include "crypto/sha1.h"
#include "crypto/sha2.h"
@ -5,7 +5,8 @@
#include "script.h"
namespace {
inline std::string ValueString(const std::vector<unsigned char>& vch)
@ -6,13 +6,13 @@
#ifndef H_BITCOIN_SCRIPT
#define H_BITCOIN_SCRIPT
#include <climits>
#include <limits>
#include <stdexcept>
#include <boost/variant.hpp>
#include <stdint.h>
#include <string.h>
static const unsigned int MAX_SCRIPT_ELEMENT_SIZE = 520; // bytes
@ -6,9 +6,12 @@
#ifndef H_BITCOIN_SCRIPT_STANDARD
#define H_BITCOIN_SCRIPT_STANDARD
#include "script/interpreter.h"
class CScript;
#include <boost/test/unit_test.hpp>
#include <boost/circular_buffer.hpp>
using namespace std;