From e8267633f1edb7861aaeb0ffaee571189d29603e Mon Sep 17 00:00:00 2001 From: Joseph Livesey Date: Mon, 14 Oct 2024 16:57:23 -0400 Subject: [PATCH] fix(header-accumulator): fix cargo fmt --- crates/header-accumulator/src/errors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/header-accumulator/src/errors.rs b/crates/header-accumulator/src/errors.rs index dc713e05..d0c4fb78 100644 --- a/crates/header-accumulator/src/errors.rs +++ b/crates/header-accumulator/src/errors.rs @@ -138,7 +138,7 @@ impl From for EraValidateError { fn from(error: ProtosError) -> Self { match error { ProtosError::BlockConversionError => Self::HeaderDecodeError, - _ => unimplemented!("Error mapping is not implemented") + _ => unimplemented!("Error mapping is not implemented"), } } }