This commit is contained in:
Anton Evangelatov 2021-09-10 15:09:37 +02:00
parent caaff9b7af
commit 67dc7523d5

View File

@ -974,7 +974,10 @@ func listDealsWithJSON(cctx *cli.Context) error {
}
}
w.Encode(val)
err := w.Encode(val)
if err != nil {
return err
}
}
return nil