From 0803d832658515a69521f8c2080fda13552bec69 Mon Sep 17 00:00:00 2001 From: joshieDo <93316087+joshieDo@users.noreply.github.com> Date: Thu, 26 Sep 2024 22:10:39 +0100 Subject: [PATCH] re-add todo --- crates/exex/exex/src/wal/storage.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/exex/exex/src/wal/storage.rs b/crates/exex/exex/src/wal/storage.rs index 4307909f888c..f1464bf4feec 100644 --- a/crates/exex/exex/src/wal/storage.rs +++ b/crates/exex/exex/src/wal/storage.rs @@ -112,6 +112,7 @@ impl Storage { debug!(?file_path, "Reading notification from WAL"); let mut file = File::open(&file_path)?; + // TODO(alexey): use rmp-serde when Alloy and Reth serde issues are resolved Ok(serde_json::from_reader(&mut file)?) }