Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
2 changes: 1 addition & 1 deletion src/transaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ impl Transaction {
Transaction::DeclareV2(tx) => tx.execute(state, block_context),
Transaction::Deploy(tx) => tx.execute(state, block_context),
Transaction::DeployAccount(tx) => tx.execute(state, block_context),
Transaction::InvokeFunction(tx) => tx.execute(state, block_context, 0),
Transaction::InvokeFunction(tx) => tx.execute(state, block_context, remaining_gas),
Transaction::L1Handler(tx) => tx.execute(state, block_context, remaining_gas),
}
}
Expand Down