Skip to content

v2 Penumbra support in Hermes #20

v2 Penumbra support in Hermes

v2 Penumbra support in Hermes #20

GitHub Actions / clippy-no-default-features failed Jan 31, 2024 in 0s

clippy-no-default-features

4 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 4
Warning 0
Note 0
Help 0

Versions

  • rustc 1.75.0 (82e1608df 2023-12-21)
  • cargo 1.75.0 (1d8b05cdd 2023-11-20)
  • clippy 0.1.75 (82e1608 2023-12-21)

Annotations

Check failure on line 72 in crates/relayer/src/chain/penumbra/chain.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-no-default-features

no method named `status_stream` found for struct `penumbra_view::ViewService` in the current scope

error[E0599]: no method named `status_stream` found for struct `penumbra_view::ViewService` in the current scope
    --> crates/relayer/src/chain/penumbra/chain.rs:72:38
     |
72   |                 let mut stream = vs2.status_stream().await?;
     |                                      ^^^^^^^^^^^^^ method not found in `ViewService`
     |
    ::: /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/2221fb7/crates/proto/src/gen/penumbra.view.v1alpha1.rs:2268:18
     |
2268 |         async fn status_stream(
     |                  ------------- the method is available for `penumbra_view::ViewService` here
     |
     = help: items from traits can only be used if the trait is in scope
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
     |
1    + use penumbra_proto::penumbra::view::v1alpha1::view_protocol_service_server::ViewProtocolService;
     |

Check failure on line 72 in crates/relayer/src/chain/penumbra/chain.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-no-default-features

no method named `status_stream` found for struct `penumbra_view::ViewService` in the current scope

error[E0599]: no method named `status_stream` found for struct `penumbra_view::ViewService` in the current scope
    --> crates/relayer/src/chain/penumbra/chain.rs:72:38
     |
72   |                 let mut stream = vs2.status_stream().await?;
     |                                      ^^^^^^^^^^^^^ method not found in `ViewService`
     |
    ::: /home/runner/.cargo/git/checkouts/penumbra-54633d8978d5e293/2221fb7/crates/proto/src/gen/penumbra.view.v1alpha1.rs:2268:18
     |
2268 |         async fn status_stream(
     |                  ------------- the method is available for `penumbra_view::ViewService` here
     |
     = help: items from traits can only be used if the trait is in scope
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
     |
1    + use penumbra_proto::penumbra::view::v1alpha1::view_protocol_service_server::ViewProtocolService;
     |

Check failure on line 85 in crates/relayer/src/spawn.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-no-default-features

cannot find type `PenumbraChain` in this scope

error[E0412]: cannot find type `PenumbraChain` in this scope
  --> crates/relayer/src/spawn.rs:85:52
   |
85 |         ChainConfig::Penumbra(_) => ChainRuntime::<PenumbraChain>::spawn(config, rt),
   |                                                    ^^^^^^^^^^^^^ not found in this scope
   |
help: consider importing this struct
   |
1  + use crate::chain::penumbra::chain::PenumbraChain;
   |

Check failure on line 85 in crates/relayer/src/spawn.rs

See this annotation in the file changed.

@github-actions github-actions / clippy-no-default-features

cannot find type `PenumbraChain` in this scope

error[E0412]: cannot find type `PenumbraChain` in this scope
  --> crates/relayer/src/spawn.rs:85:52
   |
85 |         ChainConfig::Penumbra(_) => ChainRuntime::<PenumbraChain>::spawn(config, rt),
   |                                                    ^^^^^^^^^^^^^ not found in this scope
   |
help: consider importing this struct
   |
1  + use crate::chain::penumbra::chain::PenumbraChain;
   |