mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix: do not panic on safe, finalized BlockIdProvider (#2628)
This commit is contained in:
@ -116,11 +116,13 @@ where
|
||||
Tree: BlockchainTreeViewer + Send + Sync,
|
||||
{
|
||||
fn safe_block_num(&self) -> Result<Option<reth_primitives::BlockNumber>> {
|
||||
todo!()
|
||||
// TODO: implement with canon chain tracker
|
||||
Ok(None)
|
||||
}
|
||||
|
||||
fn finalized_block_num(&self) -> Result<Option<reth_primitives::BlockNumber>> {
|
||||
todo!()
|
||||
// TODO: implement with canon chain tracker
|
||||
Ok(None)
|
||||
}
|
||||
|
||||
fn pending_block_num_hash(&self) -> Result<Option<reth_primitives::BlockNumHash>> {
|
||||
|
||||
Reference in New Issue
Block a user