Skip to content

Commit

Permalink
Cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoopmann committed Mar 16, 2024
1 parent f178bf3 commit 1f8b2b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,8 @@ fn generate_block(gas_limit: u64, base_fee_per_gas: u64) -> Block {
block_number: 19447300,
..Default::default()
};
try_into_block(payload.clone().into(), Some(B256::with_last_byte(0x69))).expect("failed to create block")
try_into_block(payload.clone().into(), Some(B256::with_last_byte(0x69)))
.expect("failed to create block")
}

fn generate_validation_request_body(
Expand All @@ -619,7 +620,6 @@ fn generate_validation_request_body(
validation_request_body.registered_gas_limit = 1_000_000;
validation_request_body.parent_beacon_block_root = Some(B256::with_last_byte(0x69));


seal_request_body(add_transactions(
validation_request_body,
transactions,
Expand Down

0 comments on commit 1f8b2b2

Please sign in to comment.