File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
stacks-node/src/nakamoto_node Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ pub mod consts {
84
84
85
85
/// this should be updated to the latest network epoch version supported by
86
86
/// this node. this will be checked by the `validate_epochs()` method.
87
- pub const PEER_NETWORK_EPOCH : u32 = PEER_VERSION_EPOCH_3_1 as u32 ;
87
+ pub const PEER_NETWORK_EPOCH : u32 = PEER_VERSION_EPOCH_3_2 as u32 ;
88
88
89
89
/// set the fourth byte of the peer version
90
90
pub const PEER_VERSION_MAINNET : u32 = PEER_VERSION_MAINNET_MAJOR | PEER_NETWORK_EPOCH ;
Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ impl CoinbaseInterval {
256
256
257
257
impl StacksEpochId {
258
258
pub fn latest ( ) -> StacksEpochId {
259
- StacksEpochId :: Epoch31
259
+ StacksEpochId :: Epoch32
260
260
}
261
261
262
262
/// In this epoch, how should the mempool perform garbage collection?
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ use stacks::chainstate::stacks::miner::{
44
44
use stacks:: chainstate:: stacks:: Error as ChainstateError ;
45
45
use stacks:: config:: BurnchainConfig ;
46
46
use stacks:: core:: mempool:: MemPoolDB ;
47
- use stacks:: core:: STACKS_EPOCH_3_1_MARKER ;
47
+ use stacks:: core:: STACKS_EPOCH_3_2_MARKER ;
48
48
use stacks:: monitoring:: increment_stx_blocks_mined_counter;
49
49
use stacks:: net:: db:: LocalPeer ;
50
50
use stacks:: net:: p2p:: NetworkHandle ;
@@ -1139,7 +1139,7 @@ impl RelayerThread {
1139
1139
key_block_ptr : u32:: try_from ( key. block_height )
1140
1140
. expect ( "FATAL: burn block height exceeded u32" ) ,
1141
1141
key_vtxindex : u16:: try_from ( key. op_vtxindex ) . expect ( "FATAL: vtxindex exceeded u16" ) ,
1142
- memo : vec ! [ STACKS_EPOCH_3_1_MARKER ] ,
1142
+ memo : vec ! [ STACKS_EPOCH_3_2_MARKER ] ,
1143
1143
new_seed : VRFSeed :: from_proof ( & tip_vrf_proof) ,
1144
1144
parent_block_ptr : u32:: try_from ( commit_parent_block_burn_height)
1145
1145
. expect ( "FATAL: burn block height exceeded u32" ) ,
You can’t perform that action at this time.
0 commit comments