| 57 | use summit_types::{Digest, Genesis, PrivateKey, PublicKey, Validator, utils::get_expanded_path}; |
| 58 | use summit_types::{consensus_state::ConsensusState, scheme::MultisigScheme}; |
| 59 | use tracing::{Level, error, info, warn}; |
| 60 | |
| 61 | pub const DEFAULT_DB_FOLDER: &str = "~/.seismic/consensus/store"; |
| 62 | |
| 63 | pub const DEFAULT_ENGINE_IPC_PATH: &str = "/tmp/reth_engine_api.ipc"; |
| 64 | |
| 65 | #[derive(Parser, Debug)] |
nothing calls this directly
no outgoing calls
no test coverage detected