You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
l2_gas consumption has been added to pathfinder_common::receipt::ExecutionReceipt recently but we're not serializing it into storage so when retrieving from storage we always get 0.
In Starknet 0.13.4 the feeder gateway will return L2 gas consumption in transaction receipts:
get_transaction_receipt: the execution_resources property of receipts will also contain the triplet of consumed resources (l1_gas_consumed, l2_gas_c onsumed, l1_data_gas_consumed)
Adding this will require adding a new variant to TransactionsWithReceiptsForBlock enum variant like we did for issue #2384.
The text was updated successfully, but these errors were encountered:
l2_gas
consumption has been added topathfinder_common::receipt::ExecutionReceipt
recently but we're not serializing it into storage so when retrieving from storage we always get 0.In Starknet 0.13.4 the feeder gateway will return L2 gas consumption in transaction receipts:
Adding this will require adding a new variant to
TransactionsWithReceiptsForBlock
enum variant like we did for issue #2384.The text was updated successfully, but these errors were encountered: