File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
testnet/stacks-node/src/tests/signer Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -118,6 +118,7 @@ jobs:
118
118
- tests::signer::v0::mine_2_nakamoto_reward_cycles
119
119
- tests::signer::v0::signer_set_rollover
120
120
- tests::signer::v0::signing_in_0th_tenure_of_reward_cycle
121
+ - tests::signer::v0::continue_after_tenure_extend
121
122
- tests::nakamoto_integrations::burn_ops_integration_test
122
123
- tests::nakamoto_integrations::check_block_heights
123
124
- tests::nakamoto_integrations::clarity_burn_state
Original file line number Diff line number Diff line change @@ -4988,18 +4988,13 @@ fn continue_after_tenure_extend() {
4988
4988
// It's possible that we have a pending block commit already.
4989
4989
// Mine two BTC blocks to "flush" this commit.
4990
4990
4991
- let mut blocks_processed_before = coord_channel
4992
- . lock ( )
4993
- . expect ( "Mutex poisoned" )
4994
- . get_stacks_blocks_processed ( ) ;
4995
-
4996
4991
for i in 0 ..2 {
4997
4992
info ! (
4998
4993
"------------- After pausing commits, triggering 2 BTC blocks: ({} of 2) -----------" ,
4999
4994
i + 1
5000
4995
) ;
5001
4996
5002
- blocks_processed_before = coord_channel
4997
+ let mut blocks_processed_before = coord_channel
5003
4998
. lock ( )
5004
4999
. expect ( "Mutex poisoned" )
5005
5000
. get_stacks_blocks_processed ( ) ;
@@ -5035,7 +5030,7 @@ fn continue_after_tenure_extend() {
5035
5030
// Verify that the miner can continue mining in the tenure with the tenure extend
5036
5031
info ! ( "------------------------- Mine After Tenure Extend -------------------------" ) ;
5037
5032
let mut sender_nonce = 0 ;
5038
- blocks_processed_before = coord_channel
5033
+ let mut blocks_processed_before = coord_channel
5039
5034
. lock ( )
5040
5035
. expect ( "Mutex poisoned" )
5041
5036
. get_stacks_blocks_processed ( ) ;
You can’t perform that action at this time.
0 commit comments