mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
p2p: fix ip change log parameter (#30158)
This commit is contained in:
parent
79d2327771
commit
4bbe993252
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue