Skip to content

Commit

Permalink
Increase the number of blocks to be considered a frequent miner
Browse files Browse the repository at this point in the history
Signed-off-by: Jacinta Ferrant <[email protected]>
  • Loading branch information
jferrant committed Sep 30, 2024
1 parent 4c311bb commit 09bc47b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testnet/stacks-node/src/tests/signer/v0.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1312,13 +1312,13 @@ fn bitcoind_forking_test() {
.btc_regtest_controller
.build_next_block(4);

info!("Wait for block off of shallow fork");
info!("Wait for block off of deep fork");
thread::sleep(Duration::from_secs(15));

// we need to mine some blocks to get back to being considered a frequent miner
for i in 0..3 {
for i in 0..4 {
info!(
"Mining block {} of 3 to be considered a frequent miner",
"Mining block {} of 4 to be considered a frequent miner",
i + 1
);
let commits_count = signer_test
Expand Down

0 comments on commit 09bc47b

Please sign in to comment.