refactor: Add missing includes

This commit is contained in:
MarcoFalke 2023-08-17 14:09:38 +02:00
parent 6ce5e8f475
commit faeea1ab58
No known key found for this signature in database
2 changed files with 8 additions and 4 deletions

View File

@ -3,13 +3,16 @@
// file COPYING or https://www.opensource.org/licenses/mit-license.php.
#include <addresstype.h>
#include <script/script.h>
#include <script/solver.h>
#include <crypto/sha256.h>
#include <hash.h>
#include <pubkey.h>
#include <script/script.h>
#include <script/solver.h>
#include <uint256.h>
#include <util/hash_type.h>
#include <cassert>
#include <vector>
typedef std::vector<unsigned char> valtype;

View File

@ -3,14 +3,15 @@
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <script/solver.h>
#include <pubkey.h>
#include <script/interpreter.h>
#include <script/script.h>
#include <script/solver.h>
#include <span.h>
#include <string>
#include <algorithm>
#include <cassert>
#include <string>
typedef std::vector<unsigned char> valtype;