-
Notifications
You must be signed in to change notification settings - Fork 122
Notifications: Improve L402 handling #841
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
Merged
sputn1ck
merged 3 commits into
lightninglabs:master
from
sputn1ck:better_ntfn_stream_l402
Oct 30, 2024
Merged
Notifications: Improve L402 handling #841
sputn1ck
merged 3 commits into
lightninglabs:master
from
sputn1ck:better_ntfn_stream_l402
Oct 30, 2024
Conversation
This file contains hidden or 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
feb5bbb to
e475756
Compare
starius
approved these changes
Oct 30, 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.
LGTM 🏆
Few comments
This commit changes the way we fetch the l402 tokens for the notification stream. Instead of fetching them from the server and paying an invoice, we now look into our local store for the token. This means that a loop client will not autofetch a token.
e475756 to
b0301e4
Compare
bhandras
approved these changes
Oct 30, 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.
LGTM 🎉
b0301e4 to
18b7573
Compare
This commit adds the FetchL402 rpc to the client proto, which will allow users to force fetching an L402 without doing a loop out or in.
This commit adds a new command to the loop cli tool that fetches the a l402 token from the swap server.
18b7573 to
7ca5dc8
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.
This PR improves l402 handling for the notification stream. Prior an automatic 1sat payment was dispatched to fetch an l402 from the server. This logged unnecessary noise, when a node did not have sufficient outbound liquidity. We now check our local store
for an l402 and only continue with the stream if one token is found.
A new user will need to loop out or call the new
fetchl402cli command in order to receive notifications.