core/vm: avoid duplicate log in json logger (#22825)

pull/22809/head
Evgeny Danilenko 4 years ago committed by GitHub
parent 37b5595456
commit df20b3b982
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      core/vm/logger_json.go

@ -87,8 +87,9 @@ func (l *JSONLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration,
Time time.Duration `json:"time"`
Err string `json:"error,omitempty"`
}
var errMsg string
if err != nil {
l.encoder.Encode(endLog{common.Bytes2Hex(output), math.HexOrDecimal64(gasUsed), t, err.Error()})
errMsg = err.Error()
}
l.encoder.Encode(endLog{common.Bytes2Hex(output), math.HexOrDecimal64(gasUsed), t, ""})
l.encoder.Encode(endLog{common.Bytes2Hex(output), math.HexOrDecimal64(gasUsed), t, errMsg})
}

Loading…
Cancel
Save