mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
fix(cli): remove usage of StageDB on DbTool (#448)
* use view and update instead of StageDB * change DbTool docs * clippy
This commit is contained in:
@@ -682,10 +682,10 @@ mod tests {
|
||||
Some((key, _)) => key,
|
||||
None => return Ok(()),
|
||||
};
|
||||
let mut walker = tx_count_cursor.walk(first_tx_count_key)?.peekable();
|
||||
let walker = tx_count_cursor.walk(first_tx_count_key)?.peekable();
|
||||
|
||||
let mut prev_entry: Option<(BlockNumHash, NumTransactions)> = None;
|
||||
while let Some(entry) = walker.next() {
|
||||
for entry in walker {
|
||||
let (key, count) = entry?;
|
||||
|
||||
// Validate sequentiality only after prev progress,
|
||||
|
||||
Reference in New Issue
Block a user