From e618bb7a9e4435863785ceda6f65fc1e3c65eb9b Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Tue, 24 Sep 2024 20:39:25 -0400 Subject: [PATCH] fmt --- consensus/src/context.rs | 2 +- consensus/src/context/task.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/consensus/src/context.rs b/consensus/src/context.rs index 7778e30..0d6428c 100644 --- a/consensus/src/context.rs +++ b/consensus/src/context.rs @@ -326,7 +326,7 @@ pub enum BlockChainContextRequest { FeeEstimate { /// TODO grace_blocks: u64, - } + }, } pub enum BlockChainContextResponse { diff --git a/consensus/src/context/task.rs b/consensus/src/context/task.rs index 75aff94..74142c5 100644 --- a/consensus/src/context/task.rs +++ b/consensus/src/context/task.rs @@ -325,7 +325,8 @@ impl ContextTask { self.alt_chain_cache_map.add_alt_cache(prev_id, cache); BlockChainContextResponse::Ok } - BlockChainContextRequest::HardForkInfo(_) | BlockChainContextRequest::FeeEstimate { .. } => { + BlockChainContextRequest::HardForkInfo(_) + | BlockChainContextRequest::FeeEstimate { .. } => { todo!() } })