diff --git a/src/Makefile.am b/src/Makefile.am index c5eddc6cf0..81700addf3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -159,6 +159,7 @@ BITCOIN_CORE_H = \ rpc/util.h \ scheduler.h \ script/descriptor.h \ + script/generic.hpp \ script/ismine.h \ script/sigcache.h \ script/sign.h \ diff --git a/src/script/generic.hpp b/src/script/generic.hpp new file mode 100644 index 0000000000..3b81a520bc --- /dev/null +++ b/src/script/generic.hpp @@ -0,0 +1,59 @@ +// Copyright (c) 2009-2010 Satoshi Nakamoto +// Copyright (c) 2009-2018 The Bitcoin developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#ifndef H_BITCOIN_SCRIPT_GENERIC +#define H_BITCOIN_SCRIPT_GENERIC + +#include +#include