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;
4
4
use ibc_eureka_core_client_types:: error:: ClientError ;
5
5
use ibc_eureka_core_client_types:: Height ;
6
6
use 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 } ;
8
8
use ibc_primitives:: prelude:: * ;
9
9
use ibc_primitives:: { Timestamp , TimestampError } ;
10
10
@@ -50,6 +50,11 @@ pub enum ChannelError {
50
50
MissingCounterparty ,
51
51
/// missing timeout
52
52
MissingTimeout ,
53
+ /// mismatched counterparty: expected `{expected}`, actual `{actual}`
54
+ MismatchCounterparty {
55
+ expected : ClientId ,
56
+ actual : ClientId ,
57
+ } ,
53
58
/// mismatched packet sequence: expected `{expected}`, actual `{actual}`
54
59
MismatchedPacketSequence {
55
60
expected : Sequence ,
You can’t perform that action at this time.
0 commit comments