Skip to content

Commit

Permalink
chore: remove extra comments
Browse files Browse the repository at this point in the history
Signed-off-by: Lohachov Mykhailo <[email protected]>
  • Loading branch information
aoyako committed Dec 3, 2024
1 parent 5e9b8f0 commit 42a1ab5
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions crates/iroha_p2p/tests/integration/p2p.rs
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,7 @@ async fn two_networks() {
.idle_timeout(idle_timeout)
.build()
.expect("Failed to build config (1)");
// let config1 = Config {
// address: WithOrigin::inline(address1.clone()),
// public_address: WithOrigin::inline(address1.clone()),
// idle_timeout,
// };

let (mut network1, _) = NetworkHandle::start(key_pair1, config1, ShutdownSignal::new())
.await
.unwrap();
Expand All @@ -180,11 +176,7 @@ async fn two_networks() {
.idle_timeout(idle_timeout)
.build()
.expect("Failed to build config (2)");
// let config2 = Config {
// address: WithOrigin::inline(address2.clone()),
// public_address: WithOrigin::inline(address2.clone()),
// idle_timeout,
// };

let (network2, _) = NetworkHandle::start(key_pair2, config2, ShutdownSignal::new())
.await
.unwrap();
Expand Down

0 comments on commit 42a1ab5

Please sign in to comment.