diff --git a/cli/state.go b/cli/state.go index 9031ba870..2750ca680 100644 --- a/cli/state.go +++ b/cli/state.go @@ -1528,6 +1528,9 @@ func printMsg(ctx context.Context, api v0api.FullNode, msg cid.Cid, mw *lapi.Msg if err := printReceiptReturn(ctx, api, m, mw.Receipt); err != nil { return err } + if mw.Receipt.EventsRoot != nil { + fmt.Printf("Events Root: %s\n", mw.Receipt.EventsRoot) + } return nil }