File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
src/jormungandr/testing/hersir/src Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ use std::{
32
32
time:: Duration ,
33
33
} ;
34
34
35
- #[ derive( custom_debug :: Debug , thiserror:: Error ) ]
35
+ #[ derive( Debug , thiserror:: Error ) ]
36
36
pub enum Error {
37
37
#[ error( transparent) ]
38
38
Io ( #[ from] io:: Error ) ,
@@ -87,7 +87,6 @@ pub enum Error {
87
87
ShutdownProcedure {
88
88
alias : String ,
89
89
message : String ,
90
- #[ debug( skip) ]
91
90
logs : Vec < String > ,
92
91
} ,
93
92
#[ error( "node '{alias}' failed to shutdown: {e}" ) ]
@@ -100,15 +99,13 @@ pub enum Error {
100
99
FragmentNotInMemPoolLogs {
101
100
alias : String ,
102
101
fragment_id : FragmentId ,
103
- #[ debug( skip) ]
104
102
logs : Vec < String > ,
105
103
} ,
106
104
#[ error( "fragment '{fragment_id}' is pending for too long ({} s) for node '{alias}'" , . duration. as_secs( ) ) ]
107
105
FragmentIsPendingForTooLong {
108
106
fragment_id : FragmentId ,
109
107
duration : Duration ,
110
108
alias : String ,
111
- #[ debug( skip) ]
112
109
logs : Vec < String > ,
113
110
} ,
114
111
#[ error( transparent) ]
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ use chain_impl_mockchain::{
6
6
} ;
7
7
8
8
pub trait VotePlanExtension {
9
+ #[ allow( dead_code) ]
9
10
fn convert_to_def ( self , key : & VotePlanKey ) -> VotePlanDef ;
10
11
}
11
12
You can’t perform that action at this time.
0 commit comments