mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-30 12:47:05 +00:00
debugging
This commit is contained in:
@@ -2476,7 +2476,7 @@ impl BeaconNodeHttpClient {
|
||||
pub async fn get_validator_inclusion_list<E: EthSpec>(
|
||||
&self,
|
||||
slot: Slot,
|
||||
) -> Result<Option<GenericResponse<InclusionList<E>>>, Error> {
|
||||
) -> Result<Option<GenericResponse<InclusionListTransactions<E>>>, Error> {
|
||||
let mut path = self.eth_path(V1)?;
|
||||
|
||||
path.path_segments_mut()
|
||||
@@ -2565,7 +2565,7 @@ impl BeaconNodeHttpClient {
|
||||
&self,
|
||||
epoch: Epoch,
|
||||
indices: &[u64],
|
||||
) -> Result<DutiesResponse<Vec<InclusionListDutyData>>, Error> {
|
||||
) -> Result<DutiesResponse<Vec<InclusionListDuty>>, Error> {
|
||||
let mut path = self.eth_path(V1)?;
|
||||
|
||||
path.path_segments_mut()
|
||||
|
||||
@@ -748,14 +748,6 @@ pub struct ProposerData {
|
||||
pub slot: Slot,
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
|
||||
pub struct InclusionListDutyData {
|
||||
pub pubkey: PublicKeyBytes,
|
||||
#[serde(with = "serde_utils::quoted_u64")]
|
||||
pub validator_index: u64,
|
||||
pub slot: Slot,
|
||||
}
|
||||
|
||||
#[derive(Clone, Deserialize)]
|
||||
pub struct ValidatorBlocksQuery {
|
||||
pub randao_reveal: SignatureBytes,
|
||||
|
||||
Reference in New Issue
Block a user