mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-30 20:57:10 +00:00
got interop working~
This commit is contained in:
@@ -2612,7 +2612,7 @@ impl BeaconNodeHttpClient {
|
||||
pub async fn get_validator_inclusion_list<E: EthSpec>(
|
||||
&self,
|
||||
slot: Slot,
|
||||
) -> Result<Option<GenericResponse<InclusionListTransactions<E>>>, Error> {
|
||||
) -> Result<Option<GenericResponse<Transactions<E>>>, Error> {
|
||||
let mut path = self.eth_path(V1)?;
|
||||
|
||||
path.path_segments_mut()
|
||||
|
||||
@@ -2342,6 +2342,9 @@ mod test {
|
||||
ExecutionPayload::Electra(ExecutionPayloadElectra::<MainnetEthSpec>::random_for_test(
|
||||
rng,
|
||||
)),
|
||||
ExecutionPayload::Eip7805(ExecutionPayloadEip7805::<MainnetEthSpec>::random_for_test(
|
||||
rng,
|
||||
)),
|
||||
ExecutionPayload::Fulu(ExecutionPayloadFulu::<MainnetEthSpec>::random_for_test(rng)),
|
||||
];
|
||||
let merged_forks = &ForkName::list_all()[2..];
|
||||
@@ -2386,6 +2389,17 @@ mod test {
|
||||
blobs_bundle,
|
||||
}
|
||||
},
|
||||
{
|
||||
let execution_payload =
|
||||
ExecutionPayload::Eip7805(
|
||||
ExecutionPayloadEip7805::<MainnetEthSpec>::random_for_test(rng),
|
||||
);
|
||||
let blobs_bundle = BlobsBundle::random_for_test(rng);
|
||||
ExecutionPayloadAndBlobs {
|
||||
execution_payload,
|
||||
blobs_bundle,
|
||||
}
|
||||
},
|
||||
{
|
||||
let execution_payload =
|
||||
ExecutionPayload::Fulu(
|
||||
|
||||
Reference in New Issue
Block a user