Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix panics in packet queries #554

Merged
merged 5 commits into from
Jan 27, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- [relayer-cli]
- Replace `ChannelConfig` in `Channel::new` ([#511])
- Add `packet-send` CLI ([#470])
- UX improvements for relayer txs ([#536, #540])
- UX improvements for relayer txs ([#536, #540, #554])

- [relayer]
- Performance improvements ([#514], [#537])
Expand Down Expand Up @@ -59,6 +59,7 @@
[#536]: https://github.com/informalsystems/ibc-rs/issues/536
[#537]: https://github.com/informalsystems/ibc-rs/issues/537
[#540]: https://github.com/informalsystems/ibc-rs/issues/540
[#554]: https://github.com/informalsystems/ibc-rs/issues/554


## v0.0.6
Expand Down
8 changes: 4 additions & 4 deletions relayer-cli/src/commands/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ mod packet;
#[derive(Command, Debug, Options, Runnable)]
pub enum QueryCmd {
/// The `query client` subcommand
#[options(help = "query client")]
#[options(help = "query information about client(s)")]
Client(QueryClientCmds),

/// The `query connection` subcommand
#[options(help = "query connection")]
#[options(help = "query information about connection(s)")]
Connection(QueryConnectionCmds),

/// The `query channel` subcommand
#[options(help = "query channel")]
#[options(help = "query information about channel(s)")]
Channel(QueryChannelCmds),

/// The `query packet` subcommand
#[options(help = "query packets")]
#[options(help = "query information about packet(s)")]
Packet(QueryPacketCmds),
}

Expand Down
Loading