chore(primitives): move checkpoints under stage mod (#2906)

This commit is contained in:
Roman Krasiuk
2023-05-30 20:14:13 +03:00
committed by GitHub
parent c481b8717b
commit 5d7eba6fb2
41 changed files with 113 additions and 66 deletions

View File

@ -5,7 +5,10 @@ use crate::{
Case, Error, Suite,
};
use reth_db::mdbx::test_utils::create_test_rw_db;
use reth_primitives::{stage::StageId, BlockBody, SealedBlock, StageCheckpoint};
use reth_primitives::{
stage::{StageCheckpoint, StageId},
BlockBody, SealedBlock,
};
use reth_provider::Transaction;
use reth_stages::{stages::ExecutionStage, ExecInput, Stage};
use std::{collections::BTreeMap, ffi::OsStr, fs, ops::Deref, path::Path, sync::Arc};