mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-19 03:04:27 -05:00
chore: removed needless collect (#21381)
This commit is contained in:
@@ -1985,14 +1985,11 @@ mod tests {
|
||||
database_state.into_iter().map(|(address, (account, _))| {
|
||||
(address, None, Some(account.into()), Default::default())
|
||||
}),
|
||||
database_changesets
|
||||
.iter()
|
||||
.map(|block_changesets| {
|
||||
block_changesets.iter().map(|(address, account, _)| {
|
||||
(*address, Some(Some((*account).into())), [])
|
||||
})
|
||||
database_changesets.iter().map(|block_changesets| {
|
||||
block_changesets.iter().map(|(address, account, _)| {
|
||||
(*address, Some(Some((*account).into())), [])
|
||||
})
|
||||
.collect::<Vec<_>>(),
|
||||
}),
|
||||
Vec::new(),
|
||||
),
|
||||
first_block: first_database_block,
|
||||
|
||||
Reference in New Issue
Block a user