Skip to content

Commit

Permalink
Initialize consensus metadata during client create (informalsystems#1763
Browse files Browse the repository at this point in the history
)

* Initialize consensus metadata during client create

* Add .changelog entry

* Fix clippy warnings
  • Loading branch information
hu55a1n1 authored Jan 14, 2022
1 parent e6fc7a1 commit 4d164dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Initialize consensus metadata on client creation
([#1763](https://github.com/informalsystems/ibc-rs/issues/1763))
4 changes: 2 additions & 2 deletions relayer-cli/src/commands/tx/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,11 +269,11 @@ impl fmt::Display for OutputBuffer {
)?;
match inner_result {
Ok(events) => writeln!(f, "{:#?}", events)?,
Err(e) => writeln!(f, "{}", e.to_string())?,
Err(e) => writeln!(f, "{}", e)?,
}
}
}
Err(e) => writeln!(f, " {}", e.to_string())?,
Err(e) => writeln!(f, " {}", e)?,
}
}
Ok(())
Expand Down

0 comments on commit 4d164dd

Please sign in to comment.