Skip to content

impl: new packet structure for eureka #3316

impl: new packet structure for eureka

impl: new packet structure for eureka #3316

GitHub Actions / clippy failed Oct 23, 2024 in 0s

clippy

12 errors

Details

Results

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

Versions

  • rustc 1.82.0 (f6e511eec 2024-10-15)
  • cargo 1.82.0 (8f40fc59f 2024-08-21)
  • clippy 0.1.82 (f6e511e 2024-10-15)

Annotations

Check failure on line 73 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

failed to resolve: use of undeclared type `ConnectionMsg`

error[E0433]: failed to resolve: use of undeclared type `ConnectionMsg`
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:73:44
   |
73 |                 Ok(MsgEnvelope::Connection(ConnectionMsg::OpenConfirm(
   |                                            ^^^^^^^^^^^^^ use of undeclared type `ConnectionMsg`

Check failure on line 73 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

no variant or associated item named `Connection` found for enum `msgs::MsgEnvelope` in the current scope

error[E0599]: no variant or associated item named `Connection` found for enum `msgs::MsgEnvelope` in the current scope
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:73:33
   |
27 | pub enum MsgEnvelope {
   | -------------------- variant or associated item `Connection` not found for this enum
...
73 |                 Ok(MsgEnvelope::Connection(ConnectionMsg::OpenConfirm(
   |                                 ^^^^^^^^^^ variant or associated item not found in `MsgEnvelope`

Check failure on line 69 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

failed to resolve: use of undeclared type `ConnectionMsg`

error[E0433]: failed to resolve: use of undeclared type `ConnectionMsg`
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:69:44
   |
69 |                 Ok(MsgEnvelope::Connection(ConnectionMsg::OpenAck(domain_msg)))
   |                                            ^^^^^^^^^^^^^ use of undeclared type `ConnectionMsg`

Check failure on line 69 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

no variant or associated item named `Connection` found for enum `msgs::MsgEnvelope` in the current scope

error[E0599]: no variant or associated item named `Connection` found for enum `msgs::MsgEnvelope` in the current scope
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:69:33
   |
27 | pub enum MsgEnvelope {
   | -------------------- variant or associated item `Connection` not found for this enum
...
69 |                 Ok(MsgEnvelope::Connection(ConnectionMsg::OpenAck(domain_msg)))
   |                                 ^^^^^^^^^^ variant or associated item not found in `MsgEnvelope`

Check failure on line 65 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

failed to resolve: use of undeclared type `ConnectionMsg`

error[E0433]: failed to resolve: use of undeclared type `ConnectionMsg`
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:65:44
   |
65 |                 Ok(MsgEnvelope::Connection(ConnectionMsg::OpenTry(domain_msg)))
   |                                            ^^^^^^^^^^^^^ use of undeclared type `ConnectionMsg`

Check failure on line 65 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

no variant or associated item named `Connection` found for enum `msgs::MsgEnvelope` in the current scope

error[E0599]: no variant or associated item named `Connection` found for enum `msgs::MsgEnvelope` in the current scope
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:65:33
   |
27 | pub enum MsgEnvelope {
   | -------------------- variant or associated item `Connection` not found for this enum
...
65 |                 Ok(MsgEnvelope::Connection(ConnectionMsg::OpenTry(domain_msg)))
   |                                 ^^^^^^^^^^ variant or associated item not found in `MsgEnvelope`

Check failure on line 61 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

failed to resolve: use of undeclared type `ConnectionMsg`

error[E0433]: failed to resolve: use of undeclared type `ConnectionMsg`
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:61:44
   |
61 |                 Ok(MsgEnvelope::Connection(ConnectionMsg::OpenInit(domain_msg)))
   |                                            ^^^^^^^^^^^^^ use of undeclared type `ConnectionMsg`

Check failure on line 61 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

no variant or associated item named `Connection` found for enum `msgs::MsgEnvelope` in the current scope

error[E0599]: no variant or associated item named `Connection` found for enum `msgs::MsgEnvelope` in the current scope
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:61:33
   |
27 | pub enum MsgEnvelope {
   | -------------------- variant or associated item `Connection` not found for this enum
...
61 |                 Ok(MsgEnvelope::Connection(ConnectionMsg::OpenInit(domain_msg)))
   |                                 ^^^^^^^^^^ variant or associated item not found in `MsgEnvelope`

Check failure on line 72 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

failed to resolve: use of undeclared type `MsgConnectionOpenConfirm`

error[E0433]: failed to resolve: use of undeclared type `MsgConnectionOpenConfirm`
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:72:34
   |
72 |                 let domain_msg = MsgConnectionOpenConfirm::decode_vec(&any_msg.value)?;
   |                                  ^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `MsgConnectionOpenConfirm`
   |
help: a struct with a similar name exists
   |
72 |                 let domain_msg = MsgChannelOpenConfirm::decode_vec(&any_msg.value)?;
   |                                  ~~~~~~~~~~~~~~~~~~~~~
help: consider importing this struct
   |
1  + use ibc_proto::ibc::core::connection::v1::MsgConnectionOpenConfirm;
   |

Check failure on line 68 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

failed to resolve: use of undeclared type `MsgConnectionOpenAck`

error[E0433]: failed to resolve: use of undeclared type `MsgConnectionOpenAck`
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:68:34
   |
68 |                 let domain_msg = MsgConnectionOpenAck::decode_vec(&any_msg.value)?;
   |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `MsgConnectionOpenAck`
   |
help: consider importing this struct
   |
1  + use ibc_proto::ibc::core::connection::v1::MsgConnectionOpenAck;
   |

Check failure on line 64 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

failed to resolve: use of undeclared type `MsgConnectionOpenTry`

error[E0433]: failed to resolve: use of undeclared type `MsgConnectionOpenTry`
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:64:34
   |
64 |                 let domain_msg = MsgConnectionOpenTry::decode_vec(&any_msg.value)?;
   |                                  ^^^^^^^^^^^^^^^^^^^^ use of undeclared type `MsgConnectionOpenTry`
   |
help: consider importing this struct
   |
1  + use ibc_proto::ibc::core::connection::v1::MsgConnectionOpenTry;
   |

Check failure on line 60 in ibc-eureka-core/ics25-handler/types/src/msgs.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

failed to resolve: use of undeclared type `MsgConnectionOpenInit`

error[E0433]: failed to resolve: use of undeclared type `MsgConnectionOpenInit`
  --> ibc-eureka-core/ics25-handler/types/src/msgs.rs:60:34
   |
60 |                 let domain_msg = MsgConnectionOpenInit::decode_vec(&any_msg.value)?;
   |                                  ^^^^^^^^^^^^^^^^^^^^^ use of undeclared type `MsgConnectionOpenInit`
   |
help: a struct with a similar name exists
   |
60 |                 let domain_msg = MsgChannelOpenInit::decode_vec(&any_msg.value)?;
   |                                  ~~~~~~~~~~~~~~~~~~
help: consider importing this struct
   |
1  + use ibc_proto::ibc::core::connection::v1::MsgConnectionOpenInit;
   |