chore: cargo fmt

This commit is contained in:
sprites0
2025-10-05 09:57:36 +00:00
parent 3b33b0a526
commit bfd61094ee
3 changed files with 17 additions and 14 deletions

View File

@ -579,7 +579,7 @@ async fn adjust_transaction_receipt<Eth: EthWrapper>(
fn system_tx_count_for_block<Eth: EthWrapper>(eth_api: &Eth, block_id: BlockId) -> usize {
let provider = eth_api.provider();
let block = provider.block_by_id(block_id).unwrap().unwrap();
block.body.transactions().iter().filter(|tx| tx.is_system_transaction()).count()
}