Commit d9fd67d2 authored by Maurelian's avatar Maurelian Committed by GitHub

fix(l2geth): Log 'end of OVM execution' correctly (#1080)

parent f409ce75
---
'@eth-optimism/l2geth': patch
---
Correctly log 'end of OVM execution' message.
......@@ -464,10 +464,9 @@ func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas
ret = []byte{}
}
}
}
if evm.Context.EthCallSender == nil {
log.Debug("Reached the end of an OVM execution", "ID", evm.Id, "Return Data", hexutil.Encode(ret), "Error", err)
if evm.Context.EthCallSender == nil {
log.Debug("Reached the end of an OVM execution", "ID", evm.Id, "Return Data", hexutil.Encode(ret), "Error", err)
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment