From 7f673fb86238c22d85d464de0195f6e94f970765 Mon Sep 17 00:00:00 2001 From: Damian Nolan Date: Fri, 1 Mar 2024 10:17:18 +0100 Subject: [PATCH] imp: long desc for ica sendTx cli --- .../apps/27-interchain-accounts/controller/client/cli/tx.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/apps/27-interchain-accounts/controller/client/cli/tx.go b/modules/apps/27-interchain-accounts/controller/client/cli/tx.go index e3aa976f19f..128e990d52d 100644 --- a/modules/apps/27-interchain-accounts/controller/client/cli/tx.go +++ b/modules/apps/27-interchain-accounts/controller/client/cli/tx.go @@ -81,8 +81,10 @@ func newSendTxCmd() *cobra.Command { cmd := &cobra.Command{ Use: "send-tx [connection-id] [path/to/packet_msg.json]", Short: "Send an interchain account tx on the provided connection.", - Long: strings.TrimSpace(`Submits pre-built packet data containing messages to be executed on the host chain -and attempts to send the packet. Packet data is provided as json, file or string. A relative timeout timestamp can be provided with flag {packet-timeout-timestamp}. + Long: strings.TrimSpace(`Submits pre-built packet data containing messages to be executed on the host chain and attempts to send the packet. +Packet data is provided as json, file or string. A timeout timestamp can be provided using the flag {packet-timeout-timestamp}. +By default timeout timestamps are calculated relatively, adding {packet-timeout-timestamp} to the user's local system clock time. +Absolute timeout timestamp values can be used by setting the {absolute-timeouts} flag to true. If no timeout value is set then a default relative timeout value of 10 minutes is used.`), Args: cobra.ExactArgs(2), RunE: func(cmd *cobra.Command, args []string) error {