File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
ibc-eureka-core/ics04-channel/types/src Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use displaydoc::Display;
44use ibc_eureka_core_client_types:: error:: ClientError ;
55use ibc_eureka_core_client_types:: Height ;
66use ibc_eureka_core_host_types:: error:: { DecodingError , HostError , IdentifierError } ;
7- use ibc_eureka_core_host_types:: identifiers:: Sequence ;
7+ use ibc_eureka_core_host_types:: identifiers:: { ClientId , Sequence } ;
88use ibc_primitives:: prelude:: * ;
99use ibc_primitives:: { Timestamp , TimestampError } ;
1010
@@ -50,6 +50,11 @@ pub enum ChannelError {
5050 MissingCounterparty ,
5151 /// missing timeout
5252 MissingTimeout ,
53+ /// mismatched counterparty: expected `{expected}`, actual `{actual}`
54+ MismatchCounterparty {
55+ expected : ClientId ,
56+ actual : ClientId ,
57+ } ,
5358 /// mismatched packet sequence: expected `{expected}`, actual `{actual}`
5459 MismatchedPacketSequence {
5560 expected : Sequence ,
You can’t perform that action at this time.
0 commit comments