Skip to content

Commit 0f5773f

Browse files
Fix clippy
1 parent 9961bcf commit 0f5773f

File tree

1 file changed

+1
-1
lines changed
  • pallets/transaction-storage/src

1 file changed

+1
-1
lines changed

pallets/transaction-storage/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ pub mod pallet {
405405
return Err(Error::<T>::TooManyTransactions);
406406
}
407407
let chunks = num_chunks(info.size);
408-
let total_chunks = TransactionInfo::total_chunks(&transactions) + chunks;
408+
let total_chunks = TransactionInfo::total_chunks(transactions) + chunks;
409409
index = transactions.len() as u32;
410410
transactions
411411
.try_push(TransactionInfo {

0 commit comments

Comments
 (0)