-
Notifications
You must be signed in to change notification settings - Fork 399
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
Move the public channel state API into a new module #3089
Move the public channel state API into a new module #3089
Conversation
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #3089 +/- ##
==========================================
+ Coverage 89.90% 90.51% +0.61%
==========================================
Files 117 118 +1
Lines 97415 101836 +4421
Branches 97415 101836 +4421
==========================================
+ Hits 87581 92179 +4598
+ Misses 7272 7185 -87
+ Partials 2562 2472 -90 ☔ View full report in Codecov by Sentry. |
LGTM but just need to fix the fuzz imports in the final commit as well. |
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.
LGTM, but wondering if the last commit should get squashed into the first one?
Fixed the fuzz failures. As long as they aren't touching the same lines...more commits better 🤷♂️? |
f47f199
to
83112b2
Compare
Our "what is the channel's current state" structs have slowly grown to be rather nontrivial, and now include eight structs with many fields. Thus, it makes sense to pull them out of `ln::channelmanager` and into their own module. This also makes things easier for the C bindings which don't support `pub use` from a private module.
83112b2
to
2d6d5cc
Compare
Fixed dumb sorting: $ git diff-tree -U1 83112b2de 2d6d5cc86
diff --git a/lightning/src/ln/mod.rs b/lightning/src/ln/mod.rs
index f2af986fa..888044b7a 100644
--- a/lightning/src/ln/mod.rs
+++ b/lightning/src/ln/mod.rs
@@ -18,2 +18,3 @@ pub mod channelmanager;
pub mod channel_keys;
+pub mod channel_state;
pub mod inbound_payment;
@@ -33,4 +34,2 @@ pub(crate) mod peer_channel_encryptor;
-pub mod channel_state;
-
#[cfg(fuzzing)] |
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.
Going ahead and merging this
Our "what is the channel's current state" structs have slowly
grown to be rather nontrivial, and now include eight structs with
many fields. Thus, it makes sense to pull them out of
ln::channelmanager
and into their own module.This also makes things easier for the C bindings which don't
support
pub use
from a private module.