Skip to content

Commit

Permalink
p2p: fix ip change log parameter (ethereum#30158)
Browse files Browse the repository at this point in the history
  • Loading branch information
qqqeck authored and leeren committed Aug 16, 2024
1 parent bcdd979 commit 4b32b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/server_nat.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func (srv *Server) portMappingLoop() {
if err != nil {
log.Debug("Couldn't get external IP", "err", err, "interface", srv.NAT)
} else if !ip.Equal(lastExtIP) {
log.Debug("External IP changed", "ip", extip, "interface", srv.NAT)
log.Debug("External IP changed", "ip", ip, "interface", srv.NAT)
} else {
continue
}
Expand Down

0 comments on commit 4b32b9c

Please sign in to comment.