Skip to content

Commit 12205a8

Browse files
committed
Correct log for ENR (#4133)
## Issue Addressed #4080 Fixes a log when displaying the initial ENR.
1 parent 788a4b7 commit 12205a8

File tree

1 file changed

+1
-1
lines changed
  • beacon_node/lighthouse_network/src/discovery

1 file changed

+1
-1
lines changed

beacon_node/lighthouse_network/src/discovery/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ impl<TSpec: EthSpec> Discovery<TSpec> {
207207
let local_node_id = local_enr.node_id();
208208

209209
info!(log, "ENR Initialised"; "enr" => local_enr.to_base64(), "seq" => local_enr.seq(), "id"=> %local_enr.node_id(),
210-
"ip4" => ?local_enr.ip4(), "udp4"=> ?local_enr.udp4(), "tcp4" => ?local_enr.tcp6()
210+
"ip4" => ?local_enr.ip4(), "udp4"=> ?local_enr.udp4(), "tcp4" => ?local_enr.tcp4(), "tcp6" => ?local_enr.tcp6(), "udp6" => ?local_enr.udp6()
211211
);
212212
let listen_socket = match config.listen_addrs() {
213213
crate::listen_addr::ListenAddress::V4(v4_addr) => v4_addr.udp_socket_addr(),

0 commit comments

Comments
 (0)