mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-30 04:37:13 +00:00
fix claude dummy
This commit is contained in:
@@ -58,7 +58,7 @@ use types::{
|
||||
LightClientFinalityUpdate, LightClientOptimisticUpdate, PartialDataColumn,
|
||||
PartialDataColumnHeader, PayloadAttestationMessage, ProposerSlashing, SignedAggregateAndProof,
|
||||
SignedBeaconBlock, SignedBlsToExecutionChange, SignedContributionAndProof,
|
||||
SignedExecutionPayloadBidGloas, SignedExecutionPayloadEnvelope, SignedInclusionList,
|
||||
SignedExecutionPayloadBid, SignedExecutionPayloadEnvelope, SignedInclusionList,
|
||||
SignedProposerPreferences, SignedVoluntaryExit, SingleAttestation, Slot, SubnetId,
|
||||
SyncCommitteeMessage, SyncSubnetId, block::BlockImportSource,
|
||||
};
|
||||
@@ -4073,13 +4073,13 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
|
||||
parent = None,
|
||||
level = "debug",
|
||||
skip_all,
|
||||
fields(parent_block_hash = ?bid.message.parent_block_hash, parent_block_root = ?bid.message.parent_block_root),
|
||||
fields(parent_block_hash = ?bid.message().parent_block_hash(), parent_block_root = ?bid.message().parent_block_root()),
|
||||
)]
|
||||
pub fn process_gossip_execution_payload_bid(
|
||||
self: &Arc<Self>,
|
||||
message_id: MessageId,
|
||||
peer_id: PeerId,
|
||||
bid: Arc<SignedExecutionPayloadBidGloas<T::EthSpec>>,
|
||||
bid: Arc<SignedExecutionPayloadBid<T::EthSpec>>,
|
||||
) {
|
||||
let verification_result = self.chain.verify_payload_bid_for_gossip(bid.clone());
|
||||
|
||||
|
||||
@@ -506,7 +506,7 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
|
||||
self: &Arc<Self>,
|
||||
message_id: MessageId,
|
||||
peer_id: PeerId,
|
||||
execution_payload_bid: Box<SignedExecutionPayloadBidGloas<T::EthSpec>>,
|
||||
execution_payload_bid: Box<SignedExecutionPayloadBid<T::EthSpec>>,
|
||||
) -> Result<(), Error<T::EthSpec>> {
|
||||
let processor = self.clone();
|
||||
let process_fn = move || {
|
||||
|
||||
Reference in New Issue
Block a user