Skip to content

Commit

Permalink
fix: sending l1 data gas to gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
vbar committed Jan 17, 2025
1 parent 40af995 commit 0e20d91
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/gateway-types/src/reply.rs
Original file line number Diff line number Diff line change
Expand Up @@ -856,8 +856,7 @@ pub mod transaction {
Self {
l1_gas: value.l1_gas.into(),
l2_gas: value.l2_gas.into(),
// TODO: add this when adding support for Starknet 0.13.4
l1_data_gas: None,
l1_data_gas: value.l1_data_gas.map(|g| g.into()),
}
}
}
Expand Down

0 comments on commit 0e20d91

Please sign in to comment.