From a0d70e1c81a031c42f67d385613c5a6f9994d36e Mon Sep 17 00:00:00 2001 From: Denali Marsh Date: Mon, 11 Jan 2021 21:50:00 +0100 Subject: [PATCH] fix example cli liquidate cmd (#760) --- x/hard/client/cli/tx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/hard/client/cli/tx.go b/x/hard/client/cli/tx.go index 86bf1cc3..80812767 100644 --- a/x/hard/client/cli/tx.go +++ b/x/hard/client/cli/tx.go @@ -182,7 +182,7 @@ func getCmdLiquidate(cdc *codec.Codec) *cobra.Command { Long: strings.TrimSpace(`liquidate a borrower that's over their loan-to-value ratio`), Args: cobra.ExactArgs(1), Example: fmt.Sprintf( - `%s tx %s borrow kava1hgcfsuwc889wtdmt8pjy7qffua9dd2tralu64j --from `, version.ClientName, types.ModuleName, + `%s tx %s liquidate kava1hgcfsuwc889wtdmt8pjy7qffua9dd2tralu64j --from `, version.ClientName, types.ModuleName, ), RunE: func(cmd *cobra.Command, args []string) error { inBuf := bufio.NewReader(cmd.InOrStdin())