mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-08 01:05:47 +00:00
Fix compilation error
This commit is contained in:
@@ -2,7 +2,10 @@ use std::sync::Arc;
|
|||||||
|
|
||||||
use educe::Educe;
|
use educe::Educe;
|
||||||
use slot_clock::SlotClock;
|
use slot_clock::SlotClock;
|
||||||
use state_processing::{VerifySignatures, envelope_processing::process_execution_payload_envelope};
|
use state_processing::{
|
||||||
|
VerifySignatures,
|
||||||
|
envelope_processing::{VerifyStateRoot, process_execution_payload_envelope},
|
||||||
|
};
|
||||||
use tracing::{Span, debug};
|
use tracing::{Span, debug};
|
||||||
use types::{
|
use types::{
|
||||||
EthSpec, SignedBeaconBlock, SignedExecutionPayloadEnvelope,
|
EthSpec, SignedBeaconBlock, SignedExecutionPayloadEnvelope,
|
||||||
@@ -236,6 +239,7 @@ impl<T: BeaconChainTypes> IntoExecutionPendingEnvelope<T> for GossipVerifiedEnve
|
|||||||
&signed_envelope,
|
&signed_envelope,
|
||||||
// verify signature already done for GossipVerifiedEnvelope
|
// verify signature already done for GossipVerifiedEnvelope
|
||||||
VerifySignatures::False,
|
VerifySignatures::False,
|
||||||
|
VerifyStateRoot::True,
|
||||||
&chain.spec,
|
&chain.spec,
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user