mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Clean up script/standard.{h/cpp} includes
This commit is contained in:
parent
f3c9078b4c
commit
bacdb2e208
4 changed files with 10 additions and 11 deletions
|
@ -6,6 +6,7 @@
|
|||
|
||||
#include <base58.h>
|
||||
#include <bech32.h>
|
||||
#include <script/interpreter.h>
|
||||
#include <script/standard.h>
|
||||
#include <util/strencodings.h>
|
||||
|
||||
|
|
|
@ -4,15 +4,13 @@
|
|||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
#include <script/standard.h>
|
||||
|
||||
#include <crypto/sha256.h>
|
||||
#include <hash.h>
|
||||
#include <pubkey.h>
|
||||
#include <script/interpreter.h>
|
||||
#include <script/script.h>
|
||||
#include <util/strencodings.h>
|
||||
#include <span.h>
|
||||
|
||||
#include <string>
|
||||
#include <algorithm>
|
||||
|
||||
typedef std::vector<unsigned char> valtype;
|
||||
|
||||
|
|
|
@ -7,16 +7,15 @@
|
|||
#define BITCOIN_SCRIPT_STANDARD_H
|
||||
|
||||
#include <attributes.h>
|
||||
#include <pubkey.h>
|
||||
#include <script/interpreter.h>
|
||||
#include <uint256.h>
|
||||
#include <util/hash_type.h>
|
||||
#include <script/script.h>
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <variant>
|
||||
#include <optional>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
class CScript;
|
||||
class CPubKey;
|
||||
template <typename C> class Span;
|
||||
|
||||
enum class TxoutType {
|
||||
NONSTANDARD,
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
#include <consensus/tx_verify.h>
|
||||
#include <key.h>
|
||||
#include <pubkey.h>
|
||||
#include <script/interpreter.h>
|
||||
#include <script/script.h>
|
||||
#include <script/standard.h>
|
||||
#include <test/util/setup_common.h>
|
||||
|
|
Loading…
Reference in a new issue