diff --git a/eth/tracers/native/call.go b/eth/tracers/native/call.go index 87fa4eb8e460..532068e6ae94 100644 --- a/eth/tracers/native/call.go +++ b/eth/tracers/native/call.go @@ -21,7 +21,6 @@ import ( "errors" "math/big" "strconv" - "strings" "sync/atomic" "time" @@ -166,5 +165,6 @@ func uintToHex(n uint64) string { } func addrToHex(a common.Address) string { - return strings.ToLower(a.Hex()) + s, _ := a.MarshalText() + return string(s) }