Update cmd/evm/runner.go

Co-authored-by: Martin HS <martin@swende.se>
This commit is contained in:
jwasinger 2024-11-22 15:05:18 +07:00 committed by GitHub
parent c07b5fd265
commit 6342d59d56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -326,8 +326,8 @@ allocated bytes: %d
} }
if tracer == nil { if tracer == nil {
fmt.Printf("%#x\n", output) fmt.Printf("%#x\n", output)
if execErr != nil { if err != nil {
fmt.Printf(" error: %v\n", execErr) fmt.Printf(" error: %v\n", err)
} }
} }