Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChaoticTempest committed Oct 29, 2024
1 parent c35a3da commit 83ab09f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chain-signatures/node/src/mesh/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ impl Pool {
let empty_msg: Vec<Ciphered> = Vec::new();
crate::http_client::send_encrypted(
*participant,
&self.http,
self.http.clone(),
participant_info.url.clone(),
empty_msg,
self.fetch_participant_timeout,
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/chain-signatures/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ impl MultichainTestContext<'_> {

self.nodes.start_node(&self.cfg, &node_account).await?;
// Wait for new node to add itself as a candidate
tokio::time::sleep(tokio::time::Duration::from_secs(10)).await;
tokio::time::sleep(tokio::time::Duration::from_secs(20)).await;

// T number of participants should vote
let participants = self.participant_accounts().await?;
Expand Down

0 comments on commit 83ab09f

Please sign in to comment.