Skip to content

Commit

Permalink
removed extra .into()
Browse files Browse the repository at this point in the history
  • Loading branch information
vbar committed Nov 27, 2024
1 parent bef0cad commit 4a2b660
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/storage/src/connection/transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1335,8 +1335,8 @@ pub(crate) mod dto {
impl From<ResourceBoundsV0> for ResourceBoundsV1 {
fn from(value: ResourceBoundsV0) -> Self {
Self {
l1_gas: value.l1_gas.into(),
l2_gas: value.l2_gas.into(),
l1_gas: value.l1_gas,
l2_gas: value.l2_gas,
l1_data_gas: None,
}
}
Expand Down Expand Up @@ -1468,7 +1468,7 @@ pub(crate) mod dto {
fn from(v2: TransactionWithReceiptV2) -> Self {
Self {
transaction: v2.transaction.into(),
receipt: v2.receipt.into(),
receipt: v2.receipt,
}
}
}
Expand Down

0 comments on commit 4a2b660

Please sign in to comment.