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.
1 parent 04fbd00 commit d99d566Copy full SHA for d99d566
stackslib/src/core/mod.rs
@@ -496,7 +496,10 @@ pub static STACKS_EPOCH_3_0_MARKER: u8 = 0x0b;
496
497
/// Stacks 3.1 epoch marker. All block-commits in 3.1 must have a memo bitfield with this value
498
/// *or greater*.
499
-pub static STACKS_EPOCH_3_1_MARKER: u8 = 0x0c;
+/// NOTE: it has to be 0x0d because a prior release of 3.1 with 0x0c before activation had a
500
+/// consensus bug. This forces miners with this buggy release off the network if they are still
501
+/// running it prior to 3.1 activation.
502
+pub static STACKS_EPOCH_3_1_MARKER: u8 = 0x0d;
503
504
#[test]
505
fn test_ord_for_stacks_epoch() {
0 commit comments