-
Notifications
You must be signed in to change notification settings - Fork 23
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
feat: Add collab close dlc protocol event #2513
Merged
holzeis
merged 9 commits into
main
from
feat/add-collab-close-channel-to-dlc-protocol-table
May 9, 2024
Merged
feat: Add collab close dlc protocol event #2513
holzeis
merged 9 commits into
main
from
feat/add-collab-close-channel-to-dlc-protocol-table
May 9, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
luckysori
reviewed
May 9, 2024
coordinator/migrations/2024-05-08-104311_nullable_contract_id_on_dlc_protocols/up.sql
Show resolved
Hide resolved
luckysori
approved these changes
May 9, 2024
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.
No big concerns after discussing.
Before we were reusing the same reference id of the channel.
Closing a dlc channel is unrelated to any contract, hence the contract id can't be mandatory.
holzeis
force-pushed
the
feat/add-collab-close-channel-to-dlc-protocol-table
branch
from
May 9, 2024 11:51
0b5542b
to
cd8f9cd
Compare
This was referenced May 9, 2024
It can happen that the dialog is not able to render before the next event is received. Before that patch that could have lead to some random dangling events that get shown once the root screen gets rebuild. This patch puts new events in a last in last out order and on rendering the task dialog pops all events from the queue. This way we prevent having dangling events. fixes #2506
holzeis
force-pushed
the
feat/add-collab-close-channel-to-dlc-protocol-table
branch
from
May 9, 2024 12:04
cd8f9cd
to
a39a6b1
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
dlc_protocols
table. Works for the app or the coordinator proposing the collab close.Simulator.Screen.Recording.-.iPhone.15.Pro.-.2024-05-08.at.15.47.54.mp4
fixes #2506
fixes #2469