From 957e1ed413ed3a69d0f3c81d57a38d4a820288b7 Mon Sep 17 00:00:00 2001 From: Chase Wright Date: Fri, 27 Mar 2026 13:21:10 -0500 Subject: [PATCH] eth/tracers/logger: fix gofmt formatting in formatMemoryWord --- eth/tracers/logger/logger.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eth/tracers/logger/logger.go b/eth/tracers/logger/logger.go index cd6e03a500..57e4cd2df2 100644 --- a/eth/tracers/logger/logger.go +++ b/eth/tracers/logger/logger.go @@ -157,9 +157,9 @@ type structLogLegacy struct { } func formatMemoryWord(chunk []byte) string { - if len(chunk) == 32 { - return hexutil.Encode(chunk) - } + if len(chunk) == 32 { + return hexutil.Encode(chunk) + } var word [32]byte copy(word[:], chunk) return hexutil.Encode(word[:])