Skip to content

Commit 6649c8c

Browse files
committed
Increase the block proposal timeout in block_commit_delay test
Signed-off-by: Jacinta Ferrant <[email protected]>
1 parent b8d41be commit 6649c8c

File tree

1 file changed

+1
-2
lines changed
  • testnet/stacks-node/src/tests/signer

1 file changed

+1
-2
lines changed

testnet/stacks-node/src/tests/signer/v0.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6815,13 +6815,12 @@ fn block_commit_delay() {
68156815

68166816
info!("------------------------- Test Setup -------------------------");
68176817
let num_signers = 5;
6818-
let block_proposal_timeout = Duration::from_secs(20);
68196818
let mut signer_test: SignerTest<SpawnedSigner> = SignerTest::new_with_config_modifications(
68206819
num_signers,
68216820
vec![],
68226821
|config| {
68236822
// make the duration long enough that the miner will be marked as malicious
6824-
config.block_proposal_timeout = block_proposal_timeout;
6823+
config.block_proposal_timeout = Duration::from_secs(600);
68256824
},
68266825
|config| {
68276826
// Set the block commit delay to 10 minutes to ensure no block commit is sent

0 commit comments

Comments
 (0)