提交 4326061e 编写于 作者: P Péter Szilágyi

eth: fix accidental nil panic on nil errors

上级 6c670eff
......@@ -1531,7 +1531,7 @@ func (api *PrivateDebugAPI) TraceBlock(blockRlp []byte, config vm.Config) BlockT
return BlockTraceResult{
Validated: validated,
StructLogs: formatLogs(logs),
Error: err.Error(),
Error: formatError(err),
}
}
......@@ -1557,7 +1557,7 @@ func (api *PrivateDebugAPI) TraceBlockByNumber(number uint64, config vm.Config)
return BlockTraceResult{
Validated: validated,
StructLogs: formatLogs(logs),
Error: err.Error(),
Error: formatError(err),
}
}
......@@ -1573,7 +1573,7 @@ func (api *PrivateDebugAPI) TraceBlockByHash(hash common.Hash, config vm.Config)
return BlockTraceResult{
Validated: validated,
StructLogs: formatLogs(logs),
Error: err.Error(),
Error: formatError(err),
}
}
......@@ -1666,7 +1666,7 @@ func formatLogs(structLogs []vm.StructLog) []structLogRes {
Gas: trace.Gas,
GasCost: trace.GasCost,
Depth: trace.Depth,
Error: trace.Err.Error(),
Error: formatError(trace.Err),
Stack: make([]string, len(trace.Stack)),
Storage: make(map[string]string),
}
......@@ -1686,6 +1686,15 @@ func formatLogs(structLogs []vm.StructLog) []structLogRes {
return formattedStructLogs
}
// formatError formats a Go error into either an empty string or the data content
// of the error itself.
func formatError(err error) string {
if err == nil {
return ""
}
return err.Error()
}
// TraceTransaction returns the structured logs created during the execution of EVM
// and returns them as a JSON object.
func (s *PrivateDebugAPI) TraceTransaction(txHash common.Hash, logger vm.LogConfig) (*ExecutionResult, error) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册