Skip to content
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

Merged

Conversation

TheBlueMatt
Copy link
Collaborator

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.

@codecov-commenter
Copy link

codecov-commenter commented Jun 4, 2024

Codecov Report

Attention: Patch coverage is 98.64865% with 1 line in your changes missing coverage. Please review.

Project coverage is 90.51%. Comparing base (7326334) to head (83112b2).
Report is 5 commits behind head on main.

Current head 83112b2 differs from pull request most recent head 2d6d5cc

Please upload reports for the commit 2d6d5cc to get more accurate results.

Files Patch % Lines
lightning/src/routing/router.rs 80.00% 1 Missing ⚠️

❗ 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.
📢 Have feedback on the report? Share it here.

@dunxen
Copy link
Contributor

dunxen commented Jun 4, 2024

LGTM but just need to fix the fuzz imports in the final commit as well.

Copy link
Contributor

@tnull tnull left a 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?

@TheBlueMatt
Copy link
Collaborator Author

Fixed the fuzz failures.

As long as they aren't touching the same lines...more commits better 🤷‍♂️?

@TheBlueMatt TheBlueMatt force-pushed the 2024-06-channel_state-module branch from f47f199 to 83112b2 Compare June 4, 2024 13:22
dunxen
dunxen previously approved these changes Jun 4, 2024
jkczyz
jkczyz previously approved these changes Jun 4, 2024
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.
@TheBlueMatt TheBlueMatt dismissed stale reviews from jkczyz and dunxen via 2d6d5cc June 4, 2024 14:21
@TheBlueMatt TheBlueMatt force-pushed the 2024-06-channel_state-module branch from 83112b2 to 2d6d5cc Compare June 4, 2024 14:21
@TheBlueMatt
Copy link
Collaborator Author

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)]

Copy link
Contributor

@tnull tnull left a 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

@tnull tnull merged commit 15c709d into lightningdevkit:main Jun 4, 2024
15 of 16 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants