File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,6 @@ use std::sync::Arc;
8
8
pub enum ForkVersionDeserializeError {
9
9
SerdeJsonError ( serde_json:: Error ) ,
10
10
UnsupportedForkVersion ( String ) ,
11
- SsePayloadDeserializationError ( String ) ,
12
- FullPayloadDeserializationError ( String ) ,
13
11
}
14
12
15
13
impl std:: fmt:: Display for ForkVersionDeserializeError {
@@ -21,20 +19,6 @@ impl std::fmt::Display for ForkVersionDeserializeError {
21
19
ForkVersionDeserializeError :: UnsupportedForkVersion ( ref fork) => {
22
20
write ! ( f, "Unsupported fork: {}" , fork)
23
21
}
24
- ForkVersionDeserializeError :: SsePayloadDeserializationError ( ref fork) => {
25
- write ! (
26
- f,
27
- "SsePayloadAttributes deserialization for {} not implemented" ,
28
- fork
29
- )
30
- }
31
- ForkVersionDeserializeError :: FullPayloadDeserializationError ( ref fork) => {
32
- write ! (
33
- f,
34
- "FullPayloadContents deserialization for {} not implemented" ,
35
- fork
36
- )
37
- }
38
22
}
39
23
}
40
24
}
You can’t perform that action at this time.
0 commit comments