Make exec-trace human readable
Make exec-trace human readable
This commit is contained in:
parent
c1231125e9
commit
539a524271
@ -64,7 +64,11 @@ var msgCmd = &cli.Command{
|
|||||||
|
|
||||||
// Print the execution trace and receipt
|
// Print the execution trace and receipt
|
||||||
color.Green("Execution trace:")
|
color.Green("Execution trace:")
|
||||||
fmt.Println(res.ExecutionTrace)
|
trace, err := json.MarshalIndent(res.ExecutionTrace, "", " ")
|
||||||
|
if err != nil {
|
||||||
|
return xerrors.Errorf("marshaling execution trace: %w", err)
|
||||||
|
}
|
||||||
|
fmt.Println(string(trace))
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
color.Green("Receipt:")
|
color.Green("Receipt:")
|
||||||
fmt.Printf("Exit code: %d\n", res.MsgRct.ExitCode)
|
fmt.Printf("Exit code: %d\n", res.MsgRct.ExitCode)
|
||||||
|
Loading…
Reference in New Issue
Block a user