File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,17 @@ struct BIP9Stats {
48
48
49
49
/* * Detailed status of an enabled BIP9 deployment */
50
50
struct BIP9Info {
51
+ /* * Height at which current_state started */
51
52
int since{0 };
53
+ /* * String representing the current state */
52
54
std::string current_state{};
55
+ /* * String representing the next block's state */
53
56
std::string next_state{};
57
+ /* * For states where signalling is applicable, information about the signalling */
54
58
std::optional<BIP9Stats> stats;
59
+ /* * Which blocks signalled; empty if signalling is not applicable */
55
60
std::vector<bool > signalling_blocks;
61
+ /* * Height at which the deployment is active, if known. May be in the future. */
56
62
std::optional<int > active_since;
57
63
};
58
64
You can’t perform that action at this time.
0 commit comments