From 6da920ad460fda3136945fe6c7354aee1d58ce4f Mon Sep 17 00:00:00 2001 From: LeoZhang Date: Mon, 6 Nov 2023 15:02:08 +0800 Subject: [PATCH] [R4R]-[l2geth]feat: add data in eth_calls response when revert --- l2geth/core/state_transition.go | 1 - 1 file changed, 1 deletion(-) diff --git a/l2geth/core/state_transition.go b/l2geth/core/state_transition.go index 26ae69b9b..b0d51d764 100644 --- a/l2geth/core/state_transition.go +++ b/l2geth/core/state_transition.go @@ -118,7 +118,6 @@ func (result *ExecutionResult) Return() []byte { // Revert returns the concrete revert reason if the execution is aborted by `REVERT` // opcode. Note the reason can be nil if no data supplied with revert opcode. func (result *ExecutionResult) Revert() []byte { - log.Info("ExecutionResult", "result.Err", result.Err) if result.Err != vm.ErrExecutionReverted { return nil }