From 4fb61b94f7d862b42f09c8929743982ac88b2e32 Mon Sep 17 00:00:00 2001 From: jsvisa Date: Mon, 23 Sep 2024 21:30:53 +0800 Subject: [PATCH] comments Signed-off-by: jsvisa --- eth/tracers/native/call_flat.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/tracers/native/call_flat.go b/eth/tracers/native/call_flat.go index a7624ac05c..d62ad9719e 100644 --- a/eth/tracers/native/call_flat.go +++ b/eth/tracers/native/call_flat.go @@ -54,7 +54,7 @@ var parityErrorMapping = map[string]string{ } var parityErrorMappingStartingWith = map[string]string{ - "out of gas:": "Out of gas", // this will convert OOG wrapped errors, eg `out of gas: not enough gas for reentrancy sentry` to `Out of gas` + "out of gas:": "Out of gas", // convert OOG wrapped errors, eg `out of gas: not enough gas for reentrancy sentry` "invalid opcode:": "Bad instruction", "stack underflow": "Stack underflow", }