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: base_layer/core/src/base_node/proto/chain_metadata.proto
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,9 @@ message ChainMetadata {
12
12
uint64best_block_height=1;
13
13
// The block hash of the current tip of the longest valid chain, or `None` for an empty chain
14
14
bytesbest_block_hash=2;
15
-
// The current geometric mean of the pow of the chain tip, or `None` if there is no chain
16
-
bytesaccumulated_difficulty=5;
15
+
// The current geometric mean of the pow of the chain tip, or `None` if there is no chain, split its into u256_low and u256 high for old node compatibility
16
+
bytesaccumulated_difficulty_low=5;
17
+
bytesaccumulated_difficulty_high=8;
17
18
// The effective height of the pruning horizon. This indicates from what height
18
19
// a full block can be provided (exclusive).
19
20
// If `pruned_height` is equal to the `best_block_height` no blocks can be provided.
0 commit comments