mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
chore(db): remove block numhash key (#1242)
This commit is contained in:
@@ -8,12 +8,10 @@ pub enum Error {
|
||||
BlockNumber { block_number: BlockNumber },
|
||||
#[error("Block hash {block_hash:?} does not exist in Headers table")]
|
||||
BlockHash { block_hash: BlockHash },
|
||||
#[error("Block body not exists #{block_number} ({block_hash:?})")]
|
||||
BlockBody { block_number: BlockNumber, block_hash: BlockHash },
|
||||
#[error("Block body not exists #{block_number}")]
|
||||
BlockBody { block_number: BlockNumber },
|
||||
#[error("Block transition id does not exist for block #{block_number}")]
|
||||
BlockTransition { block_number: BlockNumber },
|
||||
#[error("Block number {block_number} from block hash #{block_hash} does not exist in canonical chain")]
|
||||
BlockCanonical { block_number: BlockNumber, block_hash: BlockHash },
|
||||
#[error("Block number {block_number} with hash #{received_hash:?} is not canonical block. Canonical block hash is #{expected_hash:?}")]
|
||||
NonCanonicalBlock {
|
||||
block_number: BlockNumber,
|
||||
|
||||
Reference in New Issue
Block a user