File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
testnet/stacks-node/src/tests Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8850,7 +8850,8 @@ fn mock_mining() {
8850
8850
8851
8851
info ! ( "Booting follower-thread, waiting for the follower to sync to the chain tip" ) ;
8852
8852
8853
- wait_for ( 120 , || {
8853
+ // use a high timeout for avoiding problem with github workflow
8854
+ wait_for ( 600 , || {
8854
8855
let Some ( miner_node_info) = get_chain_info_opt ( & naka_conf) else {
8855
8856
return Ok ( false ) ;
8856
8857
} ;
Original file line number Diff line number Diff line change @@ -4974,7 +4974,8 @@ fn partial_tenure_fork() {
4974
4974
info ! ( "-------- Waiting miner 2 to catch up to miner 1 --------" ) ;
4975
4975
4976
4976
// Wait for miner 2 to catch up to miner 1
4977
- wait_for ( 60 , || {
4977
+ // (note: use a high timeout to avoid potential failing on github workflow)
4978
+ wait_for ( 600 , || {
4978
4979
let info_1 = get_chain_info ( & conf) ;
4979
4980
let info_2 = get_chain_info ( & conf_node_2) ;
4980
4981
Ok ( info_1. stacks_tip_height == info_2. stacks_tip_height )
You can’t perform that action at this time.
0 commit comments