Skip to content

Commit

Permalink
Disable tx raw upgrade-clients due to a regression
Browse files Browse the repository at this point in the history
See #1229 for more info
  • Loading branch information
romac committed Jul 22, 2021
1 parent 86d6a4d commit 79c5232
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions relayer-cli/src/commands/tx/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,15 @@ pub struct TxUpgradeClientsCmd {
}

impl Runnable for TxUpgradeClientsCmd {
#[allow(unreachable_code)]
fn run(&self) {
tracing::error!("This command is currently disabled due to a regression in Hermes v0.6.1.");
tracing::error!("Please track the following issue for background and progress:");
tracing::error!("");
tracing::error!(" https://github.com/informalsystems/ibc-rs/issues/1229");

std::process::exit(1);

let config = app_config();
let src_chain = match spawn_chain_runtime(&config, &self.src_chain_id) {
Ok(handle) => handle,
Expand Down

0 comments on commit 79c5232

Please sign in to comment.