Skip to content

Commit 91954ba

Browse files
committed
fix build
1 parent bd625ba commit 91954ba

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/jormungandr/testing/hersir/src/controller/monitor/node/mod.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use std::{
3232
time::Duration,
3333
};
3434

35-
#[derive(custom_debug::Debug, thiserror::Error)]
35+
#[derive(Debug, thiserror::Error)]
3636
pub enum Error {
3737
#[error(transparent)]
3838
Io(#[from] io::Error),
@@ -87,7 +87,6 @@ pub enum Error {
8787
ShutdownProcedure {
8888
alias: String,
8989
message: String,
90-
#[debug(skip)]
9190
logs: Vec<String>,
9291
},
9392
#[error("node '{alias}' failed to shutdown: {e}")]
@@ -100,15 +99,13 @@ pub enum Error {
10099
FragmentNotInMemPoolLogs {
101100
alias: String,
102101
fragment_id: FragmentId,
103-
#[debug(skip)]
104102
logs: Vec<String>,
105103
},
106104
#[error("fragment '{fragment_id}' is pending for too long ({} s) for node '{alias}'", .duration.as_secs())]
107105
FragmentIsPendingForTooLong {
108106
fragment_id: FragmentId,
109107
duration: Duration,
110108
alias: String,
111-
#[debug(skip)]
112109
logs: Vec<String>,
113110
},
114111
#[error(transparent)]

src/jormungandr/testing/hersir/src/utils/vote_plan.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use chain_impl_mockchain::{
66
};
77

88
pub trait VotePlanExtension {
9+
#[allow(dead_code)]
910
fn convert_to_def(self, key: &VotePlanKey) -> VotePlanDef;
1011
}
1112

0 commit comments

Comments
 (0)