mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-09 03:31:45 +00:00
Implement status v2 version (#7590)
N/A Implements status v2 as defined in https://github.com/ethereum/consensus-specs/pull/4374/
This commit is contained in:
@@ -384,11 +384,12 @@ impl<T: BeaconChainTypes> SyncNetworkContext<T> {
|
||||
for peer_id in peers {
|
||||
debug!(
|
||||
peer = %peer_id,
|
||||
fork_digest = ?status_message.fork_digest,
|
||||
finalized_root = ?status_message.finalized_root,
|
||||
finalized_epoch = ?status_message.finalized_epoch,
|
||||
head_root = %status_message.head_root,
|
||||
head_slot = %status_message.head_slot,
|
||||
fork_digest = ?status_message.fork_digest(),
|
||||
finalized_root = ?status_message.finalized_root(),
|
||||
finalized_epoch = ?status_message.finalized_epoch(),
|
||||
head_root = %status_message.head_root(),
|
||||
head_slot = %status_message.head_slot(),
|
||||
earliest_available_slot = ?status_message.earliest_available_slot(),
|
||||
"Sending Status Request"
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user