-
Notifications
You must be signed in to change notification settings - Fork 111
[p2p] Factor out authenticated Mailbox
implementations
#1072
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
Codecov ReportAttention: Patch coverage is
@@ Coverage Diff @@
## main #1072 +/- ##
=======================================
Coverage 90.97% 90.98%
=======================================
Files 214 215 +1
Lines 57345 57313 -32
=======================================
- Hits 52171 52146 -25
+ Misses 5174 5167 -7
Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
We arguably don't even need the
Mailbox
type, which is just a wrapper around a sender. I think the diff is smaller (or at least simpler) as I did it in this PR as compared to just using the rawmpsc::Sender
.This PR also removes unneeded type bounds on
spawner::Message
.