This commit is contained in:
hinto.janai 2024-09-24 20:39:25 -04:00
parent e8cb951615
commit e618bb7a9e
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 3 additions and 2 deletions

View file

@ -326,7 +326,7 @@ pub enum BlockChainContextRequest {
FeeEstimate {
/// TODO
grace_blocks: u64,
}
},
}
pub enum BlockChainContextResponse {

View file

@ -325,7 +325,8 @@ impl<D: Database + Clone + Send + 'static> ContextTask<D> {
self.alt_chain_cache_map.add_alt_cache(prev_id, cache);
BlockChainContextResponse::Ok
}
BlockChainContextRequest::HardForkInfo(_) | BlockChainContextRequest::FeeEstimate { .. } => {
BlockChainContextRequest::HardForkInfo(_)
| BlockChainContextRequest::FeeEstimate { .. } => {
todo!()
}
})