mirror of
https://github.com/hinto-janai/cuprate.git
synced 2024-11-16 15:58:14 +00:00
fmt
This commit is contained in:
parent
e8cb951615
commit
e618bb7a9e
2 changed files with 3 additions and 2 deletions
|
@ -326,7 +326,7 @@ pub enum BlockChainContextRequest {
|
|||
FeeEstimate {
|
||||
/// TODO
|
||||
grace_blocks: u64,
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
pub enum BlockChainContextResponse {
|
||||
|
|
|
@ -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!()
|
||||
}
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue