From a47afc78fc1fd5d7905e1cdc81b9135c42f1f347 Mon Sep 17 00:00:00 2001 From: Dustin Brickwood Date: Mon, 6 Jan 2025 13:34:24 -0600 Subject: [PATCH] chore: run fmt --- crates/test-utils/src/zksync.rs | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/crates/test-utils/src/zksync.rs b/crates/test-utils/src/zksync.rs index 7341b228d..ed30b9e25 100644 --- a/crates/test-utils/src/zksync.rs +++ b/crates/test-utils/src/zksync.rs @@ -142,15 +142,8 @@ impl ZkSyncNode { }; let block_sealer = BlockSealer::new(sealing_mode); - let node: InMemoryNode = InMemoryNode::new( - None, - None, - &config, - time, - impersonation, - pool, - block_sealer, - ); + let node: InMemoryNode = + InMemoryNode::new(None, None, &config, time, impersonation, pool, block_sealer); for wallet in LEGACY_RICH_WALLETS.iter() { let address = wallet.0; @@ -181,7 +174,7 @@ impl ZkSyncNode { let server = server_builder.build(SocketAddr::from(([0, 0, 0, 0], 0))).await; // if no receiver was ready to receive the spawning thread died - _ = port_tx.send(0); + _ = port_tx.send(8011); let handle = server.run();