Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Better progress reporting for stage checkpoints #2982

Merged
merged 13 commits into from
Jun 5, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge remote-tracking branch 'origin/main' into feat/checkpoints
  • Loading branch information
shekhirin committed Jun 5, 2023
commit 32c0618a37af55ef0efea2cb3dfa04e2a55fee35
7 changes: 4 additions & 3 deletions bin/reth/src/stage/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ use reth_primitives::{
ChainSpec,
};
use reth_provider::{providers::get_stage_checkpoint, ShareableDatabase, Transaction};
use reth_staged_sync::utils::{chainspec::chain_spec_value_parser, init::init_db};
use reth_staged_sync::utils::init::init_db;
use reth_stages::{
stages::{
AccountHashingStage, BodyStage, ExecutionStage, ExecutionStageThresholds, MerkleStage,
SenderRecoveryStage, StorageHashingStage, TransactionLookupStage,
AccountHashingStage, BodyStage, ExecutionStage, ExecutionStageThresholds,
IndexAccountHistoryStage, IndexStorageHistoryStage, MerkleStage, SenderRecoveryStage,
StorageHashingStage, TransactionLookupStage,
},
ExecInput, ExecOutput, Stage, UnwindInput,
};
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.