Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoopmann committed Dec 12, 2023
1 parent 909b6ec commit 2749227
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 @@ -331,7 +331,7 @@ async fn test_proposer_spent_in_same_block() {
nonce: 0,
gas_limit: 21000,
to: TransactionKind::Call(receiver_address),
value: amount_to_send.try_into().unwrap(),
value: amount_to_send.into(),
input: Bytes::default(),
max_fee_per_gas: 0x4a817c800,
max_priority_fee_per_gas: 0x3b9aca00,
Expand Down Expand Up @@ -409,7 +409,7 @@ async fn test_proposer_spent_in_same_block_but_payment_tx_last() {
nonce: 0,
gas_limit: 21000,
to: TransactionKind::Call(receiver_address),
value: amount_to_send.try_into().unwrap(),
value: amount_to_send.into(),
input: Bytes::default(),
max_fee_per_gas: 0x4a817c800,
max_priority_fee_per_gas: 0x3b9aca00,
Expand Down

0 comments on commit 2749227

Please sign in to comment.