Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/state_transition.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func (st *StateTransition) buyGas() error {

st.initialGas = st.msg.Gas()
// Do not subtract the gas from the user balance when running OVM.
// This is handled in the Solidity contracts to enable to fraud proof
// This is handled in the Solidity contracts to enable fraud proof
if !vm.UsingOVM {
st.state.SubBalance(st.msg.From(), mgval)
}
Expand Down