Skip to content

Commit

Permalink
chore: run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dutterbutter committed Jan 6, 2025
1 parent 6a9b866 commit a47afc7
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions crates/test-utils/src/zksync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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();

Expand Down

0 comments on commit a47afc7

Please sign in to comment.