From 91ed9363edac95c9d9552652ba605eed7b419d8c Mon Sep 17 00:00:00 2001 From: Adi Seredinschi Date: Tue, 16 Feb 2021 16:48:44 +0100 Subject: [PATCH] Documented the v0.1.0 installation issue re: #672 --- guide/src/installation.md | 14 ++++++++++++++ relayer-cli/src/commands/tx.rs | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/guide/src/installation.md b/guide/src/installation.md index 14ffbc0ec8..15bd36184b 100644 --- a/guide/src/installation.md +++ b/guide/src/installation.md @@ -35,6 +35,20 @@ hermes version hermes 0.1.0 ``` +> #### Update 16.02.2021: Regarding installation errors +> +> It is possible that the command `cargo install ibc-relayer-cli` will fail. +> This is a [known issue][issue/672], caused by a recent update of a dependency. +> +> The simplest way to work around this problem is to build Hermes from source, +> using the most up-to-date version. Simply follow the recipe in the section +> below __but skip the step__ `git checkout v0.1.0`. In that way, you'll be +> using the latest commit in the `master` branch. The rest of the steps remain +> unchanged. + + +[issue/672]: https://github.com/informalsystems/ibc-rs/issues/672 + ## Build from source ### Clone the repository diff --git a/relayer-cli/src/commands/tx.rs b/relayer-cli/src/commands/tx.rs index 707793c9ce..1f5f7be293 100644 --- a/relayer-cli/src/commands/tx.rs +++ b/relayer-cli/src/commands/tx.rs @@ -75,7 +75,7 @@ pub enum TxRawCommands { #[options(help = "Confirm the closing of a channel (ChannelCloseConfirm)")] ChanCloseConfirm(channel::TxRawChanCloseConfirmCmd), - /// The `tx raw packet-send` subcommand + /// The `tx raw ft-transfer` subcommand #[options(help = "Send a fungible token transfer test transaction (ICS20 MsgTransfer)")] FtTransfer(transfer::TxICS20MsgTransferCmd),