Skip to content

Commit

Permalink
cmd/devp2p: fix erroneous log output in crawler (#27089)
Browse files Browse the repository at this point in the history
cmd/devp2p: fix log of ignored recent nodes counter
  • Loading branch information
0x00Duke authored Apr 17, 2023
1 parent 5aa5295 commit 8fe807c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/devp2p/crawl.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ loop:
"added", atomic.LoadUint64(&added),
"updated", atomic.LoadUint64(&updated),
"removed", atomic.LoadUint64(&removed),
"ignored(recent)", atomic.LoadUint64(&removed),
"ignored(recent)", atomic.LoadUint64(&recent),
"ignored(incompatible)", atomic.LoadUint64(&skipped))
}
}
Expand Down

0 comments on commit 8fe807c

Please sign in to comment.