From 78f897f184ea763e9cf9c27034a845211612e4ff Mon Sep 17 00:00:00 2001 From: zhiqiangxu <652732310@qq.com> Date: Sat, 2 Mar 2024 18:21:08 +0800 Subject: [PATCH] fix typo --- core/state_transition.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state_transition.go b/core/state_transition.go index bfcf38f..77f84cd 100755 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -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) }