diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -403,6 +403,7 @@ config.cpp consensus/activation.cpp consensus/tx_verify.cpp + dbwrapper.cpp flatfile.cpp globals.cpp httprpc.cpp @@ -412,12 +413,12 @@ init.cpp interfaces/handler.cpp interfaces/node.cpp - dbwrapper.cpp merkleblock.cpp miner.cpp net.cpp net_processing.cpp noui.cpp + outputtype.cpp policy/fees.cpp policy/policy.cpp pow.cpp diff --git a/src/Makefile.am b/src/Makefile.am --- a/src/Makefile.am +++ b/src/Makefile.am @@ -165,6 +165,7 @@ netbase.h \ netmessagemaker.h \ noui.h \ + outputtype.h \ policy/fees.h \ policy/policy.h \ pow.h \ @@ -272,6 +273,7 @@ net.cpp \ net_processing.cpp \ noui.cpp \ + outputtype.cpp \ policy/fees.cpp \ policy/policy.cpp \ pow.cpp \ diff --git a/src/outputtype.h b/src/outputtype.h new file mode 100644 --- /dev/null +++ b/src/outputtype.h @@ -0,0 +1,47 @@ +// Copyright (c) 2009-2010 Satoshi Nakamoto +// Copyright (c) 2009-2017 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#ifndef BITCOIN_OUTPUTTYPE_H +#define BITCOIN_OUTPUTTYPE_H + +#include +#include