mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-22 21:58:05 -05:00
refactor(witness): remove unnecessary curly braces in closure (#17752)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@@ -65,17 +65,15 @@ impl BundleStateSorted {
|
||||
.clone()
|
||||
.into_iter()
|
||||
.map(|(address, account)| {
|
||||
{
|
||||
(
|
||||
address,
|
||||
BundleAccountSorted {
|
||||
info: account.info,
|
||||
original_info: account.original_info,
|
||||
status: account.status,
|
||||
storage: BTreeMap::from_iter(account.storage),
|
||||
},
|
||||
)
|
||||
}
|
||||
(
|
||||
address,
|
||||
BundleAccountSorted {
|
||||
info: account.info,
|
||||
original_info: account.original_info,
|
||||
status: account.status,
|
||||
storage: BTreeMap::from_iter(account.storage),
|
||||
},
|
||||
)
|
||||
})
|
||||
.collect();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user