Skip to content

Commit f33adc8

Browse files
committed
fix build
1 parent a465397 commit f33adc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/lib/dal/src/transactions_dal.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1798,7 +1798,7 @@ impl TransactionsDal<'_, '_> {
17981798
"Updated {} transactions for stashed accounts, stashed accounts amount: {}, stashed_accounts: {:?}",
17991799
result.rows_affected(),
18001800
stashed_addresses.len(),
1801-
stashed_accounts.iter().map(|a|format!("{:x}", a)).collect()
1801+
stashed_accounts.iter().map(|a|format!("{:x}", a)).collect::<Vec<_>>()
18021802
);
18031803

18041804
let purged_addresses: Vec<_> = purged_accounts.iter().map(Address::as_bytes).collect();

0 commit comments

Comments
 (0)