mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 10:22:23 +00:00
p2p: fix ip change log
This commit is contained in:
parent
a0631f3ebd
commit
d63ba64339
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