migrate types to API crate

This commit is contained in:
realbigsean
2023-03-15 16:03:36 -04:00
parent b303d2fb7e
commit fb7d729d92
9 changed files with 68 additions and 73 deletions

View File

@@ -7,6 +7,7 @@ use crate::{
};
use crate::{http_metrics::metrics, validator_store::ValidatorStore};
use environment::RuntimeContext;
use eth2::types::SignedBlockContents;
use slog::{crit, debug, error, info, trace, warn};
use slot_clock::SlotClock;
use std::ops::Deref;
@@ -16,7 +17,7 @@ use tokio::sync::mpsc;
use tokio::time::sleep;
use types::{
AbstractExecPayload, BeaconBlock, BlindedPayload, BlockType, EthSpec, FullPayload, Graffiti,
PublicKeyBytes, SignedBlockContents, Slot,
PublicKeyBytes, Slot,
};
#[derive(Debug)]