Skip to content

impl: new packet structure for eureka #3316

impl: new packet structure for eureka

impl: new packet structure for eureka #3316

Triggered via pull request October 23, 2024 15:57
Status Success
Total duration 1m 21s
Artifacts

no-std.yaml

on: pull_request
Check no_std panic conflict
1m 0s
Check no_std panic conflict
Check no_std substrate support
1m 11s
Check no_std substrate support
Fit to window
Zoom out
Zoom in

Annotations

12 errors
failed to resolve: use of undeclared type `ConnectionMsg`: ibc-eureka-core/ics25-handler/types/src/msgs.rs#L73
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`
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#L73
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`
failed to resolve: use of undeclared type `ConnectionMsg`: ibc-eureka-core/ics25-handler/types/src/msgs.rs#L69
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`
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#L69
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`
failed to resolve: use of undeclared type `ConnectionMsg`: ibc-eureka-core/ics25-handler/types/src/msgs.rs#L65
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`
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#L65
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`
failed to resolve: use of undeclared type `ConnectionMsg`: ibc-eureka-core/ics25-handler/types/src/msgs.rs#L61
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`
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#L61
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`
failed to resolve: use of undeclared type `MsgConnectionOpenConfirm`: ibc-eureka-core/ics25-handler/types/src/msgs.rs#L72
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; |
failed to resolve: use of undeclared type `MsgConnectionOpenAck`: ibc-eureka-core/ics25-handler/types/src/msgs.rs#L68
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; |
failed to resolve: use of undeclared type `MsgConnectionOpenTry`: ibc-eureka-core/ics25-handler/types/src/msgs.rs#L64
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; |
failed to resolve: use of undeclared type `MsgConnectionOpenInit`: ibc-eureka-core/ics25-handler/types/src/msgs.rs#L60
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; |