mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-10 07:48:19 -05:00
fix(stages): use correct block number in error message (#17751)
This commit is contained in:
@@ -111,7 +111,7 @@ impl ExecInput {
|
||||
// body.
|
||||
let end_block_body = provider
|
||||
.block_body_indices(end_block_number)?
|
||||
.ok_or(ProviderError::BlockBodyIndicesNotFound(target_block))?;
|
||||
.ok_or(ProviderError::BlockBodyIndicesNotFound(end_block_number))?;
|
||||
(end_block_number, false, end_block_body.next_tx_num())
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user