Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8fe807c

Browse files
authored
cmd/devp2p: fix erroneous log output in crawler (ethereum#27089)
cmd/devp2p: fix log of ignored recent nodes counter
1 parent 5aa5295 commit 8fe807c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/devp2p/crawl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ loop:
141141
"added", atomic.LoadUint64(&added),
142142
"updated", atomic.LoadUint64(&updated),
143143
"removed", atomic.LoadUint64(&removed),
144-
"ignored(recent)", atomic.LoadUint64(&removed),
144+
"ignored(recent)", atomic.LoadUint64(&recent),
145145
"ignored(incompatible)", atomic.LoadUint64(&skipped))
146146
}
147147
}

0 commit comments

Comments
 (0)