mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-09 15:28:01 -05:00
perf(engine): return sorted data from compute_trie_input (#19340)
This commit is contained in:
@@ -372,8 +372,8 @@ pub trait LoadPendingBlock:
|
||||
Ok(ExecutedBlock {
|
||||
recovered_block: block.into(),
|
||||
execution_output: Arc::new(execution_outcome),
|
||||
hashed_state: Arc::new(hashed_state),
|
||||
trie_updates: Arc::new(trie_updates),
|
||||
hashed_state: Arc::new(hashed_state.into_sorted()),
|
||||
trie_updates: Arc::new(trie_updates.into_sorted()),
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user