From 79009683aef6fc415b33492d11c0e77708c03707 Mon Sep 17 00:00:00 2001 From: Daniyar Itegulov Date: Wed, 27 Nov 2024 12:50:18 +1100 Subject: [PATCH] fmt + lint --- src/node/in_memory.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/node/in_memory.rs b/src/node/in_memory.rs index 1ff04d56..7a723495 100644 --- a/src/node/in_memory.rs +++ b/src/node/in_memory.rs @@ -922,13 +922,7 @@ impl InMemoryNode { pool: TxPool, ) -> Self { let system_contracts_options = config.system_contracts_options; - let inner = InMemoryNodeInner::new( - fork, - - config, - time.clone(), - impersonation.clone(), - ); + let inner = InMemoryNodeInner::new(fork, config, time.clone(), impersonation.clone()); InMemoryNode { inner: Arc::new(RwLock::new(inner)), snapshots: Default::default(), @@ -987,7 +981,6 @@ impl InMemoryNode { let config = self.get_config()?; let inner = InMemoryNodeInner::new( fork, - &config, TimestampManager::default(), ImpersonationManager::default(),