Skip to content

Commit

Permalink
fix: Correct peer ID
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Dec 6, 2023
1 parent 601660c commit f7c96d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/events/events.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ func (f *Forwarder) processAttestationEvent(e *ethereum.AttestationReceievedEven
TimeInSlot: e.TrackedAttestation.TimeInSlot,
},
PeerInfo: &PeerInfo{
ID: string(info.ID),
ID: fmt.Sprintf("%s", info.ID),
IP: info.IP,
Port: info.Port,
UserAgent: info.PeerInfo.UserAgent,
Expand Down

0 comments on commit f7c96d4

Please sign in to comment.