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

Delay broadcasting Channel Updates until connected to peers #2731

Merged
merged 1 commit into from Apr 4, 2024

Conversation

shaavan
Copy link
Contributor

@shaavan shaavan commented Nov 12, 2023

resolves #2711

We might generate channel updates to be broadcasted when we are not connected to any peers to broadcast them to. This PR ensures to cache them and broadcast them only when we are connected to some peers.

@shaavan
Copy link
Contributor Author

shaavan commented Nov 12, 2023

I took the following approach to tackling this issue:

  1. Create a struct in our ChannelManager that keeps the broadcast events that were not successfully sent at the time when they needed to be sent.
  2. If after the "n" timer ticks (in this case: 2), we are connected to some peer, we use the info in this struct to broadcast all these events to them.

@codecov-commenter
Copy link

codecov-commenter commented Nov 12, 2023

Codecov Report

Attention: Patch coverage is 97.97297% with 3 lines in your changes are missing coverage. Please review.

Project coverage is 91.68%. Comparing base (5bf58f0) to head (93a2a8e).
Report is 263 commits behind head on main.

Files Patch % Lines
lightning/src/ln/channelmanager.rs 96.29% 3 Missing ⚠️

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #2731      +/-   ##
==========================================
+ Coverage   89.14%   91.68%   +2.53%     
==========================================
  Files         116      118       +2     
  Lines       93205   111593   +18388     
  Branches    93205   111593   +18388     
==========================================
+ Hits        83089   102315   +19226     
+ Misses       7583     7246     -337     
+ Partials     2533     2032     -501     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Collaborator

@TheBlueMatt TheBlueMatt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could use a test. Also, I do think we should consider the close-then-shutdown case - how do we get these out if we were shutting down when we closed or if we close on restart but dont keep the node online for long?

lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
@shaavan
Copy link
Contributor Author

shaavan commented Nov 15, 2023

@TheBlueMatt

This could use a test.

Certainly! I am on it 🧑‍💻

Also, I do think we should consider the close-then-shutdown case - how do we get these out if we were shutting down when we closed or if we close on restart but dont keep the node online for long?

I have some thoughts on this scenario you brought up that I would love to share. In this case, it seems like broadcasting might be a challenge since, during the shutdown, we wouldn't be connected to anyone to relay the message.

As far as I know, our node doesn't automatically broadcast the channel graph each time it restarts. To tackle this, it might be worth considering the option of persisting the data to be broadcast later when the node comes back online.

However, I'm curious about the importance of the channel update message and whether it's crucial enough to justify persisting the data across multiple node sessions. I'd love to hear your perspective on this matter.

@shaavan
Copy link
Contributor Author

shaavan commented Nov 18, 2023

Updated from pr2731.01 -> pr2731.02 (diff)

Changes:

  • Simplified the pending_broadcast_messages struct. Instead of clearing pending broadcasts after the N timer ticks. Try clearing it after each timer_ticks.
  • Simplified the cases while trying to broadcast force close channel updates. The new two cases are "If we are connected to SOME peer" and "If we are connected to NO peer".

@shaavan
Copy link
Contributor Author

shaavan commented Nov 19, 2023

Updated from pr2731.02 to pr2731.03 (diff) with the following changes:

  1. Improved Handling of Close-Then-Shutdown Scenario:
  • Implemented a solution for the close-then-shutdown case.
  • Introduced logic to persist information related to pending_broadcast_messages.
  • Ensured correct broadcasting of pending channel_update messages in scenarios where there are pending_broadcast_messages to be sent or when they are sent and subsequently cleared.

These adjustments enhance the reliability of broadcasting pending channel_update messages in situations involving close-then-shutdown, providing a more robust system.

lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
@shaavan
Copy link
Contributor Author

shaavan commented Nov 23, 2023

Updated from pr2731.03 to pr2731.04 (diff):
Addressed @wpaulino comments

Changes:

  • Added the is_connected check to only broadcast to peers that we are already connected with.
  • Moved the rebroadcast logic to the peer_connected function to send the pending broadcast messages to the peer as soon as we are connected instead of waiting for timer_tick to occur.

@shaavan
Copy link
Contributor Author

shaavan commented Nov 28, 2023

Updated from pr2731.04 to pr2731.05 (diff):

Changes:

  1. Rebased over master
  2. Behavior change: choosing not to broadcast to the peer we force closed on if it is disconnected leads to the breaking of some tests. This behavior is reverted.
  3. Added a test for testing the changes.

@shaavan
Copy link
Contributor Author

shaavan commented Dec 9, 2023

Updated from pr2731.05 to pr2731.06 (diff):
Addressed @TheBlueMatt and @wpaulino comments:

Updates:

  1. Rebased over master.
  2. Logic update: Instead of selecting a random peer, directly add to the pending_broadcast_msgs queue.
  3. Logic update: Update the get_and_clear_pending_msgs function to also poll in pending_broadcast_msgs.
  4. Removed persistence for pending_broadcast_msgs.

lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
@shaavan
Copy link
Contributor Author

shaavan commented Jan 19, 2024

Updated from pr2731.06 to pr2731.07 (diff):
Addressed @TheBlueMatt comments

  1. Rebased
  2. Simplified the logic by always caching the pending_broadcast_messages when force-closing the channel.
  3. Removed redundant code.
  4. Simplified the test

Copy link

coderabbitai bot commented Jan 19, 2024

Note

Reviews Paused

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Walkthrough

The update improves the reliability of channel_update messages when a channel is force-closed, especially during startup when no peers are connected. It introduces a mechanism to cache and later broadcast these messages, ensuring the network is informed about the channel's closure.

Changes

File(s) Change Summary
lightning/src/ln/channelmanager.rs Added pending_broadcast_messages to cache channel_update messages and updated logic for broadcasting these messages when peers are available. Added tests for caching behavior.
lightning/src/ln/reorg_tests.rs Adjusted the creation and configuration of network nodes and channel managers to increase the number of channel monitor configurations, node configurations, channel managers, and network nodes. Added a reconnection step between nodes to facilitate successful channel update broadcast in a specific test case.

Assessment against linked issues

Objective Addressed Explanation
Make on-close channel_update messages more robust (#2711) The PR implements caching for channel_update messages to be broadcasted later when peers connect, which aligns with the objective of making these messages more robust.

Poem

A hop, a skip, in the code we trust,
To broadcast updates when channels go bust.
🐇💻 Through the net, our messages leap,
Ensuring the data in the burrow runs deep.

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share

Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/coderabbit-overrides.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 1

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 5592378 and b6f632b.
Files selected for processing (1)
  • lightning/src/ln/channelmanager.rs (8 hunks)
Additional comments: 5
lightning/src/ln/channelmanager.rs (5)
  • 1384-1386: The addition of pending_broadcast_messages is consistent with the PR's objective to cache unsent channel_update messages. Ensure that the Mutex is used correctly throughout the code to prevent data races.
  • 2462-2462: Initialization of pending_broadcast_messages with an empty vector is correct and follows Rust's conventions for initializing state within a struct.
  • 8207-8208: Appending pending_broadcast_messages to pending_events is a key part of the mechanism to ensure cached messages are sent. Ensure that this operation is thread-safe and that the lock is held for the minimum time necessary.
  • 11105-11105: The initialization of pending_broadcast_messages is repeated here, which is consistent with the earlier initialization. This is standard practice and is approved.
  • 11636-11662: The test case test_channel_update_cached correctly verifies the caching behavior of channel updates. It checks that the message is not immediately sent but is cached correctly, which aligns with the PR's objectives.

lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
@shaavan
Copy link
Contributor Author

shaavan commented Jan 22, 2024

Updated from pr2731.07 to pr2731.08 (diff):
Addressed @wpaulino comments

Updates:

  1. Removed redundant extra line.
  2. Changed the logging level from log_info to log_trace to log at the appropriate level.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 0

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 6b0ba8c and 39861b8.
Files selected for processing (1)
  • lightning/src/ln/channelmanager.rs (7 hunks)
Additional comments: 7
lightning/src/ln/channelmanager.rs (7)
  • 1384-1387: The addition of pending_broadcast_messages is consistent with the PR's objective to cache unsent channel_update messages. Ensure that the Mutex is used correctly throughout the code to prevent data races.
  • 2462-2462: Initialization of pending_broadcast_messages with an empty vector is correct and matches the declaration in hunk 1.
  • 2954-2959: The logic to cache the channel_update message when no peers are connected is implemented as described. However, ensure that the log_trace! macro is used consistently across the codebase for logging.
  • 8177-8177: This comment block is a placeholder for the get_and_clear_pending_msg_events function. It's important to ensure that the documentation is updated to reflect any new logic related to the broadcasting of messages.
  • 8206-8207: Appending pending_broadcast_messages to pending_events is in line with the intended functionality. However, consider the comment from wpaulino about ensuring that there are connected peers before attempting to broadcast.
  • 11104-11104: The initialization of pending_broadcast_messages in a different constructor is consistent with the previous hunk and is necessary for proper functionality.
  • 11635-11661: The test test_channel_update_cached verifies the caching behavior of channel_update messages. Ensure that the test covers all relevant scenarios, including node restarts and reconnections.

@shaavan
Copy link
Contributor Author

shaavan commented Jan 30, 2024

Updated from pr2731.08 to pr2731.09 (diff):
Addressed @wpaulino and @TheBlueMatt comments

Changes:

  1. (Temporarily) removed the log_trace!().
  2. Retrieve pending_broadcast_messages only if we are connected to at least one peer.
  3. Expanded the introduced test to check for this behavior.
  4. Made appropriate changes to the current tests that are affected by this change.

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review Status

Actionable comments generated: 4

Configuration used: CodeRabbit UI

Commits Files that changed from the base of the PR and between 51d9ee3 and cc2ab57.
Files selected for processing (2)
  • lightning/src/ln/channelmanager.rs (10 hunks)
  • lightning/src/ln/reorg_tests.rs (2 hunks)
Additional comments: 7
lightning/src/ln/channelmanager.rs (7)
  • 1384-1386: The addition of pending_broadcast_messages to cache channel update messages not broadcasted due to lack of peer connections is a good approach to ensure reliability in message broadcasting. Ensure that the mutex is consistently unlocked to prevent deadlocks.
  • 2954-2958: Caching the channel update message when an update is available but not immediately broadcastable is implemented correctly. However, ensure that the locking mechanism on pending_broadcast_messages does not introduce any performance bottlenecks or deadlocks, especially in high-concurrency scenarios.
  • 8176-8176: The documentation update clarifying the placement of BroadcastChannelAnnouncement and BroadcastChannelUpdate among MessageSendEvents is helpful for understanding the intended behavior. It's important that documentation keeps pace with code changes to aid future maintainability.
  • 8202-8216: > 📝 NOTE

This review was outside the diff hunks and was mapped to the diff hunk with the greatest overlap. Original lines [8196-8213]

The logic to check for connected peers before appending broadcast messages to the pending events list is sound. However, consider optimizing the iteration over per_peer_state to avoid potential performance issues in scenarios with a large number of peers.

  • 11642-11689: The test test_channel_update_cached effectively verifies the caching and broadcasting behavior of channel update messages under various network conditions. Ensure that edge cases, such as rapid connect/disconnect scenarios, are also covered to prevent any unforeseen issues.
  • 11714-11722: The test test_drop_disconnected_peers_when_removing_channels correctly asserts the behavior of peer state management upon disconnection and force closure of channels. It's crucial to also test the behavior when peers reconnect after being dropped to ensure the system's resilience.
  • 12426-12430: The test test_trigger_lnd_force_close sets up a scenario to test force-closure of channels, which is essential for ensuring the robustness of channel management under adversarial conditions. Consider adding assertions to verify the state of the channel and the broadcast of channel update messages post-force-close.

lightning/src/ln/reorg_tests.rs Outdated Show resolved Hide resolved
lightning/src/ln/reorg_tests.rs Outdated Show resolved Hide resolved
lightning/src/ln/reorg_tests.rs Outdated Show resolved Hide resolved
lightning/src/ln/reorg_tests.rs Outdated Show resolved Hide resolved
Copy link
Contributor

@wpaulino wpaulino left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, this can be squashed now

@shaavan
Copy link
Contributor Author

shaavan commented Mar 21, 2024

Updated from pr2731.13 to pr2731.14 (diff):
Addressed @TheBlueMatt comment

Changes:

  1. Update check_closed_broadcast and handle_announce_close_broadcast_events to connect a dummy peer if none are present to properly broadcast the update message.
  2. Add a new function in ChannelManager, to check if some peers are connected to a node.

lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
@shaavan
Copy link
Contributor Author

shaavan commented Mar 22, 2024

Updated from pr2731.14 to pr2731.15 (diff):
Addressed @TheBlueMatt comments

Updates:

  1. Used Option instead of Vec::capacity(1) in handle_error!().
  2. Updated pending_brodcast_message documentation.
  3. Moved the pending_broadcast_message locking, so that it's locked only when it is needed.
  4. Moved the is_some_peer_connected() to functional_utils

@shaavan
Copy link
Contributor Author

shaavan commented Mar 22, 2024

Updated from pr2731.15 to pr2731.16 (diff):

  • Made is_some_peer_connected function private to functional_utils.rs.

Copy link
Collaborator

@TheBlueMatt TheBlueMatt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay, LGTM with the feedback below addressed. Feel free to squash commits down into a single clean history when you next push.

@@ -1988,7 +1992,7 @@ macro_rules! handle_error {

$self.finish_close_channel(shutdown_res);
if let Some(update) = update_option {
msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate {
broadcast_event = Some(events::MessageSendEvent::BroadcastChannelUpdate {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can do the pending_broadcast_messages lock and push inline here, no need to store it in a temp.

@@ -4059,7 +4064,8 @@ where
}
if let ChannelPhase::Funded(channel) = channel_phase {
if let Ok(msg) = self.get_channel_update_for_broadcast(channel) {
peer_state.pending_msg_events.push(events::MessageSendEvent::BroadcastChannelUpdate { msg });
let pending_broadcast_messages = &mut self.pending_broadcast_messages.lock().unwrap();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: everywhere you take the pending_broadcast_messages lock you don't need the &mut part.

}

pub fn disconnect_dummy_node<'a, 'b: 'a, 'c: 'b>(node: &Node<'a, 'b, 'c>) {
node.node.peer_disconnected(&PublicKey::from_slice(&[2; 33]).unwrap());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should be symmetric with connect_dummy_node, either we don't peer_connected on the onion_messenger or we should peer_disconnected as well.

Comment on lines 3253 to 3254
// Commenting the assignment to remove `unused_assignments` warning.
// dummy_connected = false;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure why we need to keep this here.

@@ -763,21 +763,21 @@ fn test_htlc_preimage_claim_prev_counterparty_commitment_after_current_counterpa
fn do_test_retries_own_commitment_broadcast_after_reorg(anchors: bool, revoked_counterparty_commitment: bool) {
// Tests that a node will retry broadcasting its own commitment after seeing a confirmed
// counterparty commitment be reorged out.
let mut chanmon_cfgs = create_chanmon_cfgs(2);
let mut chanmon_cfgs = create_chanmon_cfgs(3);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems all the changes in this file can be reverted.

#[test]
fn test_drop_disconnected_peers_when_removing_channels() {
let chanmon_cfgs = create_chanmon_cfgs(2);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems all the test changes in this file from here down can be reverted.

@shaavan
Copy link
Contributor Author

shaavan commented Mar 27, 2024

Updated from pr2731.16 to pr2731.17 (diff):
Addressed @TheBlueMatt comments

Updates:

  1. Replace &mut -> let mut
  2. Make pending_broadcast_message inline in handle_error macro.
  3. Update disconnect_dummy_node to be symmetric to connect_dummy_node.
  4. Removed redundant commented lines of code.
  5. Reverted redundant test file changes.
  6. Squashed the commit to maintain a clean commit history.

TheBlueMatt
TheBlueMatt previously approved these changes Mar 27, 2024
Copy link
Collaborator

@TheBlueMatt TheBlueMatt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM. One small nit otherwise just needs another reviewer.

lightning/src/ln/chanmon_update_fail_tests.rs Outdated Show resolved Hide resolved
@shaavan
Copy link
Contributor Author

shaavan commented Mar 28, 2024

Updated from pr2731.17 to pr2731.18 (diff):
Addressed @TheBlueMatt suggestion

Update:

  1. Removed a stray comment

lightning/src/ln/channelmanager.rs Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Outdated Show resolved Hide resolved
lightning/src/ln/channelmanager.rs Show resolved Hide resolved
lightning/src/ln/functional_test_utils.rs Outdated Show resolved Hide resolved
@shaavan
Copy link
Contributor Author

shaavan commented Mar 29, 2024

Updated from pr2731.18 to pr2731.19 (diff):
Addressed @arik-so comments

Updates:

  1. Rename is_some_peer_connected -> is_any_peer_connected
  2. Make &events::MessageSendEvent::BroadcastChannelUpdate unreachable! to make the check stricter.
  3. Rearranged checks in test_channel_update_cached.

Copy link
Contributor

@arik-so arik-so left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, though let's perhaps have @TheBlueMatt take another look because he suggested the opposite change in tests from the one I suggested.

And thank you very much for the renaming!

@TheBlueMatt
Copy link
Collaborator

LGTM, though let's perhaps have @TheBlueMatt take another look because he suggested the opposite change in tests from the one I suggested.

I don't feel super strongly about the test changes, but we may have to drop some of the assertions when we eventually move the test out of channelmanager in #2977.

    - We might generate channel updates to be broadcast when
      we are not connected to any peers to broadcast them to.
    - This PR ensures to cache them and broadcast them only when
      we are connected to some peers.

Other Changes:
    1. Introduce a test.
    2. Update the relevant current tests affected by this change.
    3. Fix a typo.
    4. Introduce two functions in functional_utils that optionally
       connect and disconnect a dummy node during broadcast testing.
@shaavan
Copy link
Contributor Author

shaavan commented Apr 2, 2024

Updated from pr2731.19 to pr2731.20 (diff):
Addressed @TheBlueMatt comment

Update:

  1. Replaced unreachable!() with debug_assert!(false) to prevent a potential panic in future production code.

Copy link
Contributor

@arik-so arik-so left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!

@TheBlueMatt TheBlueMatt merged commit 1e54dd6 into lightningdevkit:main Apr 4, 2024
13 of 16 checks passed
@shaavan shaavan deleted the issue2711 branch April 4, 2024 11:38
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.

Make on-close channel_update messages more robust
5 participants