1.7.0 with Namada #48
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
1 error
non-exhaustive patterns: `&mut ibc_relayer::config::ChainConfig::Namada(_)` not covered:
tools/integration-test/src/tests/manual/simulation.rs#L32
error[E0004]: non-exhaustive patterns: `&mut ibc_relayer::config::ChainConfig::Namada(_)` not covered
--> tools/integration-test/src/tests/manual/simulation.rs:32:19
|
32 | match chain {
| ^^^^^ pattern `&mut ibc_relayer::config::ChainConfig::Namada(_)` not covered
|
note: `ibc_relayer::config::ChainConfig` defined here
--> /home/runner/work/hermes/hermes/crates/relayer/src/config.rs:597:5
|
594 | pub enum ChainConfig {
| --------------------
...
597 | Namada(CosmosSdkConfig),
| ^^^^^^ not covered
= note: the matched value is of type `&mut ibc_relayer::config::ChainConfig`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
35 ~ },
36 + &mut ibc_relayer::config::ChainConfig::Namada(_) => todo!()
|
|