We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents abbfb37 + 49369fa commit af9e2d7Copy full SHA for af9e2d7
1 file changed
include/bitcoin/system/chain/threshold.hpp
@@ -45,7 +45,7 @@ struct threshold
45
between
46
};
47
48
- struct tuple
+ struct tuple_t
49
{
50
/// Digest is created in the sigop (sigop scope - must copy).
51
hash_digest digest;
@@ -56,6 +56,7 @@ struct threshold
56
/// Signature is a stack element (script scope - use reference).
57
cref<ec_signature> sig;
58
59
+ using tuples_t = std::vector<tuple_t>;
60
61
/// Convert opcode to category.
62
static constexpr category_t to_category(opcode code) NOEXCEPT
@@ -95,7 +96,7 @@ struct threshold
95
96
return tuples.size() == expected;
97
}
98
- std::vector<tuple> tuples{};
99
+ tuples_t tuples{};
100
category_t category{};
101
uint16_t minimum{};
102
uint16_t maximum{};
0 commit comments