You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/script/miniscript.cpp
+9-6Lines changed: 9 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,17 @@
1
-
// Copyright (c) 2019-2022 The Bitcoin Core developers
1
+
// Copyright (c) 2019-present The Bitcoin Core developers
2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
Copy file name to clipboardExpand all lines: src/script/miniscript.h
+14-9Lines changed: 14 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,25 +1,29 @@
1
-
// Copyright (c) 2019-2022 The Bitcoin Core developers
1
+
// Copyright (c) 2019-present The Bitcoin Core developers
2
2
// Distributed under the MIT software license, see the accompanying
3
3
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
4
5
5
#ifndef BITCOIN_SCRIPT_MINISCRIPT_H
6
6
#defineBITCOIN_SCRIPT_MINISCRIPT_H
7
7
8
8
#include<algorithm>
9
-
#include<functional>
10
-
#include<numeric>
9
+
#include<compare>
10
+
#include<cstdint>
11
+
#include<cstdlib>
12
+
#include<iterator>
11
13
#include<memory>
12
14
#include<optional>
13
-
#include<string>
15
+
#include<set>
16
+
#include<stdexcept>
17
+
#include<tuple>
18
+
#include<utility>
14
19
#include<vector>
15
20
16
-
#include<assert.h>
17
-
#include<cstdlib>
18
-
21
+
#include<consensus/consensus.h>
19
22
#include<policy/policy.h>
20
-
#include<primitives/transaction.h>
23
+
#include<script/interpreter.h>
21
24
#include<script/parsing.h>
22
25
#include<script/script.h>
26
+
#include<serialize.h>
23
27
#include<span.h>
24
28
#include<util/check.h>
25
29
#include<util/strencodings.h>
@@ -150,7 +154,8 @@ class Type {
150
154
};
151
155
152
156
//! Literal operator to construct Type objects.
153
-
inlineconsteval Type operator"" _mst(constchar* c, size_t l) {
157
+
inlineconsteval Type operator""_mst(constchar* c, size_t l)
0 commit comments