File tree Expand file tree Collapse file tree 3 files changed +485
-1
lines changed
ibc-core/ics02-client/types Expand file tree Collapse file tree 3 files changed +485
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ tendermint = { workspace = true }
40
40
parity-scale-codec = { workspace = true , optional = true }
41
41
scale-info = { workspace = true , optional = true }
42
42
43
+ [dev-dependencies ]
44
+ rstest = { workspace = true }
45
+
43
46
[features ]
44
47
default = [ " std" ]
45
48
std = [
Original file line number Diff line number Diff line change @@ -105,6 +105,12 @@ pub enum ClientError {
105
105
InvalidUpdateClientMessage ,
106
106
/// other error: `{description}`
107
107
Other { description : String } ,
108
+ /// invalid attribute key: `{attribute_key}`
109
+ InvalidAttributeKey { attribute_key : String } ,
110
+ /// invalid attribute value: `{attribute_value}`
111
+ InvalidAttributeValue { attribute_value : String } ,
112
+ /// Missing attribute key: `{attribute_key}`
113
+ MissingAttributeKey { attribute_key : String } ,
108
114
}
109
115
110
116
impl From < & ' static str > for ClientError {
You can’t perform that action at this time.
0 commit comments