refactor: merge lightning-custom-message into lightning crate#4386
refactor: merge lightning-custom-message into lightning crate#4386okekefrancis112 wants to merge 1 commit intolightningdevkit:mainfrom
Conversation
|
I've assigned @joostjager as a reviewer! |
d0ad0e4 to
a5a2d77
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4386 +/- ##
==========================================
+ Coverage 85.97% 86.08% +0.11%
==========================================
Files 159 159
Lines 104722 105185 +463
Branches 104722 105185 +463
==========================================
+ Hits 90030 90553 +523
+ Misses 12191 12120 -71
- Partials 2501 2512 +11
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
527de10 to
d062514
Compare
|
🔔 1st Reminder Hey @joostjager! This PR has been waiting for your review. |
joostjager
left a comment
There was a problem hiding this comment.
PR doesn't seem fully ready for review with ci retrigger commit.
I haven't dealt with this macro yet, but curious which users use it.
| @@ -1,23 +0,0 @@ | |||
| [package] | |||
| name = "lightning-custom-message" | |||
There was a problem hiding this comment.
There's also a reference in .gitignore
lightning/src/util/custom_message.rs
Outdated
| fn handle_custom_message( | ||
| &self, msg: Self::CustomMessage, sender_node_id: $crate::bitcoin::secp256k1::PublicKey | ||
| ) -> Result<(), $crate::lightning::ln::msgs::LightningError> { | ||
| &self, msg: Self::CustomMessage, sender_node_id: bitcoin::secp256k1::PublicKey |
There was a problem hiding this comment.
Leaving out $crate might be a problem when this exported macro is used in other crates?
ci/ci-tests.sh
Outdated
| cargo doc -p lightning-persister --quiet --document-private-items --features tokio | ||
|
|
||
| echo -e "\n\nTest Custom Message Macros" | ||
| cargo test -p lightning-custom-message --quiet --color always |
There was a problem hiding this comment.
Check q: I think the only testing were doc tests, that are now running as part of lightning?
|
👋 The first review has been submitted! Do you think this PR is ready for a second reviewer? If so, click here to assign a second reviewer. |
ae7bd70 to
02689c8
Compare
Summary
Merges the
lightning-custom-messagecrate into the mainlightningcrate. Thelightning-custom-messagecrate was originally separated for MSRV reasons, but both crates now require Rust 1.75, making the separation unnecessary.Backwards Compatibility
The macro remains publicly exported and works identically. Users can now access it via:
Closes: #4198