-
Notifications
You must be signed in to change notification settings - Fork 775
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Devp2p Improvements and Clean-Ups / Client ID Integration #2538
Conversation
b817bcd
to
c4b4529
Compare
Codecov Report
Additional details and impacted files
Flags with carried forward coverage won't be shown. Click here to find out more. |
// Filter out snap because we can't yet provide snap endpoints to the peers | ||
// TODO: Remove when we can also serve snap requests from other peers | ||
.filter((c) => c.name !== 'snap') | ||
.map((c) => `${c.name}${c.version}`) | ||
.join(',')}` | ||
.join(',')} clientId=${this._clientId}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good 👍
Partly picking up things from #2535 (accidental merge)
This PR does the following:
Ready for review and merge, would be nice to still have this included in the releases since the client ID update is a somewhat prominent change.