Skip to content

1.7.0 with Namada

1.7.0 with Namada #48

Triggered via pull request November 8, 2023 20:11
Status Skipped
Total duration 5s
Artifacts

multi-chains.yaml

on: pull_request
Matrix: multi-chains-test
Fit to window
Zoom out
Zoom in

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!() |