Skip to content

Commit

Permalink
fmt + lint
Browse files Browse the repository at this point in the history
  • Loading branch information
itegulov committed Nov 27, 2024
1 parent 3a88f29 commit f7f9e5f
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions src/node/in_memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -922,13 +922,7 @@ impl<S: ForkSource + std::fmt::Debug + Clone> InMemoryNode<S> {
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(),
Expand Down Expand Up @@ -987,7 +981,6 @@ impl<S: ForkSource + std::fmt::Debug + Clone> InMemoryNode<S> {
let config = self.get_config()?;
let inner = InMemoryNodeInner::new(
fork,

&config,
TimestampManager::default(),
ImpersonationManager::default(),
Expand Down

0 comments on commit f7f9e5f

Please sign in to comment.