From 8f539e58a64e5ad2d482232d39fdf7114d1f8569 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0lker=20G=C3=B6ktu=C4=9F=20=C3=96ZT=C3=9CRK?= Date: Tue, 9 Feb 2021 06:25:41 -0800 Subject: [PATCH] docs(cmd/relayer): document low-level relayer command --- starport/interface/cli/starport/cmd/relayer.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/starport/interface/cli/starport/cmd/relayer.go b/starport/interface/cli/starport/cmd/relayer.go index 83c2bc2b8b..7b41904154 100644 --- a/starport/interface/cli/starport/cmd/relayer.go +++ b/starport/interface/cli/starport/cmd/relayer.go @@ -10,8 +10,12 @@ func NewRelayer() *cobra.Command { Use: "relayer", Short: "Connects blockchains via IBC protocol", } + + rlyCmd := relayercmd.NewRootCmd() + rlyCmd.Short = "Low-level commands from github.com/cosmos/relayer" + c.AddCommand(NewRelayerConfigure()) c.AddCommand(NewRelayerConnect()) - c.AddCommand(relayercmd.NewRootCmd()) + c.AddCommand(rlyCmd) return c }