good morning!!!!

Skip to content
Snippets Groups Projects
Commit 04d2de91 authored by Lewis Marshall's avatar Lewis Marshall
Browse files

core: Fix VM error logging


Signed-off-by: default avatarLewis Marshall <lewis@lmars.net>
parent 6171d01b
No related branches found
No related tags found
No related merge requests found
......@@ -243,7 +243,7 @@ func (st *StateTransition) TransitionDb() (ret []byte, requiredGas, usedGas *big
ret, st.gas, vmerr = evm.Call(sender, st.to().Address(), st.data, st.gas, st.value)
}
if vmerr != nil {
log.Debug("VM returned with error", "err", err)
log.Debug("VM returned with error", "err", vmerr)
// The only possible consensus-error would be if there wasn't
// sufficient balance to make the transfer happen. The first
// balance transfer may never fail.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment