Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mskrzypkows committed Jun 26, 2024
1 parent fa6e391 commit ead9aec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Node/src/p2p_network/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ impl AVSp2p {
.send("Hello from avs p2p!".to_string())
.await
.unwrap();
tokio::time::sleep(tokio::time::Duration::from_secs(2)).await;
tokio::time::sleep(tokio::time::Duration::from_secs(60)).await;
}
});

Expand Down
1 change: 0 additions & 1 deletion Node/src/utils/rpc_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ pub mod test {
|_, _, _| async {
json!({
"result": "Request received and processed successfully",
"error": null,
"id": 1
})
},
Expand Down

0 comments on commit ead9aec

Please sign in to comment.