remove println on bad opcode

Fixes fill of opcode validiiy tests
This commit is contained in:
Danno Ferrin 2024-09-11 17:30:13 -06:00
parent cb57738452
commit 8d68a86bf0

View file

@ -520,7 +520,6 @@ func (st *StateTransition) TransitionDb() (*ExecutionResult, error) {
st.gasRemaining = 0
st.state.SetNonce(msg.From, st.state.GetNonce(sender.Address())+1)
}
fmt.Println(vmerr)
} else {
ret, st.gasRemaining, vmerr = st.evm.Call(sender, st.to(), msg.Data, st.gasRemaining, value)
}