-
Notifications
You must be signed in to change notification settings - Fork 37.7k
refactor: Move inbound eviction logic to its own translation unit #25500
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
Conversation
1ccde4c
to
651c43f
Compare
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers. ConflictsReviewers, this pull request conflicts with the following ones:
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first. |
651c43f
to
06d45ac
Compare
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.
Concept ACK
4f04786
to
2eb7256
Compare
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.
utACK 2eb7256
2eb7256
to
0101d2b
Compare
utACK 0101d2b |
utACK 0101d2b. I quickly verified with |
@@ -9,6 +9,7 @@ | |||
#include <chainparams.h> | |||
#include <common/bloom.h> | |||
#include <compat.h> | |||
#include <node/connection_types.h> |
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.
nit: Just noticed these are now out of the recommended include order
This PR splits of the first couple commits from #25268 that move the inbound eviction logic from
net.{h,cpp}
toeviction.{h,cpp}
.Please look at #25268 for motivation and conceptual review.