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

routing: fix mc blinded path behaviour. #9316

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

ziggie1984
Copy link
Collaborator

@ziggie1984 ziggie1984 commented Nov 27, 2024

Because we hot swap the target public key when sending to a
blinded path we need to penalize all nodes after the introduction
point.

We could also just penalize the first node after the introduction node, however that would mean we would do a bit of more pathfinding work and only fail after considering the rest of the blinded path. I think it is not super critical to have this bit more data persistent in memory.

Copy link
Contributor

coderabbitai bot commented Nov 27, 2024

Important

Review skipped

Auto reviews are limited to specific labels.

🏷️ Labels to auto review (1)
  • llm-review

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


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>, please review it.
    • 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 gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @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.
    • @coderabbitai help me debug CodeRabbit configuration file.

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 using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration 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/schema.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.

@ziggie1984 ziggie1984 added this to the v0.18.4 milestone Nov 27, 2024
@ziggie1984 ziggie1984 self-assigned this Nov 27, 2024
@ziggie1984 ziggie1984 marked this pull request as ready for review November 27, 2024 17:35
@ziggie1984 ziggie1984 added the P0 very high priority issue/PR, blocker on all others label Nov 27, 2024
@ziggie1984 ziggie1984 force-pushed the fix-blindedpath-mc branch 2 times, most recently from c74d2c0 to 2facd58 Compare November 27, 2024 20:55
@ziggie1984
Copy link
Collaborator Author

maybe we should add an itest ?

Comment on lines 523 to 524
// route we swap the target pubkey for a general one
// so that multi-path payment can be attempted. However
Copy link
Collaborator

Choose a reason for hiding this comment

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

it isnt super clear to me from the comment what the issue is/was. Is it that we only want to penalise one path instead of all the paths? why not just use the real (pre swap) final key & penalise that?

Copy link
Collaborator Author

@ziggie1984 ziggie1984 Nov 28, 2024

Choose a reason for hiding this comment

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

We currently do use the real-path-pubkey, the problem arises that we will not use this information during pathfinding hence we will try to reattempt paths which already failed with the invalid blinding error. So that's why I propose penalizing the whole path which makes it bullet-proof.

Copy link
Collaborator

Choose a reason for hiding this comment

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

I don't see the problem yet, could you specify a reproduction scenario (and logs with amounts)? The last hop (swapped) pubkey should be stable over a payment, right? So penalizing the last hop pair should be in effect even if further partial attempts are made. I can see though that the amount will be split often and the route will be re-attempted until the min shard size is reached

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

the setup is pretty simple, just create a blinded path where the payment fails in the blinded path. LND will retry the payment until timeout because the wrong pair is penalized in the MC.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

LND will also not split the amount because it always find the same route.

Copy link
Collaborator

@bitromortac bitromortac Dec 2, 2024

Choose a reason for hiding this comment

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

ok, yes I see it now thanks for the examples, in pathfinding we use the swapped pubkey T for Z (X, T), but when reporting to mission control we use the original route and therefore we punish (X, Z). I think we can fix it like it is done in this PR.

However, as noted in the comments in the lines above this change, we would fail a payment that has for example two single-hop hop hints after we fail to send over one of them. As noted in the comment, this was ok for non-mpp scenarios, but we support mpp now. So I think the cleanest fix would be to add a dummy hop to the single-hop hints such that we have an extension like [(X,Z), (Z,T)] and a search a path to T. If we make T static, we could even reuse those mc reports for the same blinded route (not sure if there's an application). The dummy hop would need to be transported via the route to reporting of mission control.

Copy link
Collaborator

Choose a reason for hiding this comment

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

That actually seems like the quick non-mpp solution, swap in a static pubkey before pathfinding and swap it in again when reporting a failure of the blinded route?

@ziggie1984
Copy link
Collaborator Author

After a discussion with Elle we decided to only punish the first PubKey after the intropoint and create an issue which makes sure blinded route mc data is not persistent in the db but rather only held in memory and removed as soon as the payment is done.

Because we hot swap the target public key when sending to a
blinded path (pathfinding logic to enable mpp support for blinded
payments) we penalize the first hop after the intro node.
Also added a TODO which only keeps the mc data for blinded paths
in memory and discards it afterwards, because this data will never
be reused as soon as the invoice is expired or settled.
Copy link
Collaborator

@ellemouton ellemouton left a comment

Choose a reason for hiding this comment

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

lgtm! 🙏

routing/result_interpretation.go Show resolved Hide resolved
@ziggie1984
Copy link
Collaborator Author

ziggie1984 commented Nov 29, 2024

some logs of the problem, so the problem is the wrong channel-pair is punished and we will always use the same path:

2024-11-29 18:06:59.843 [DBG] CRTR: Sending HTLC attempt(id=22159, total_amt=103302 mSAT, first_hop_amt={103302}) for payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323
2024-11-29 18:06:59.848 [DBG] CRTR: Attempt 22159 for payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323 successfully sent to switch, route: 944480488325120 (103302 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT), cltv 1234
2024-11-29 18:06:59.848 [DBG] CRTR: Collecting result for attempt 22159 in payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323
2024-11-29 18:06:59.848 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): queueing keystone of ADD open circuit: (Chan ID=0:0:0, HTLC ID=22159)->(Chan ID=859:1:0, HTLC ID=2832)
2024-11-29 18:06:59.848 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending UpdateAddHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2832, amt=103302 mSAT, expiry=1234, hash=45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323, blinding_point=, custom_records=map[106823:[0]]) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:06:59.849 [DBG] HSWC: Subscribing to result for attemptID=22159
2024-11-29 18:06:59.855 [DBG] CRTR: Payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323: status=In Flight, active_shards=1, rem_value=0 mSAT, fee_limit=96698 mSAT
2024-11-29 18:06:59.909 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): removing Add packet (Chan ID=0:0:0, HTLC ID=22159) from mailbox
2024-11-29 18:06:59.909 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:06:59.919 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=2c97ddc578a4d2e3f07b9e70d7e697e9cec2d05219327567c21f1209cfc0a32b, next_point=03f2c7beb2228589d6572dd74d5179f29045d1dace74542e3b07fcbc0780a8bd7a) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:06:59.922 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:06:59.936 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=9e6001271edd5c1ef00a4cad685bd74a77bcbe990e3389a02d17cdff55730606, next_point=030d406edba90c6255a737210b2a9d0c15ca360722572dbff0aeebc90c394bdef2) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:06:59.971 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received UpdateFailHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2832, reason=8a8c7e056ee2bcd7d30ac1e3a5d35e822cda06eb5b4dbaef74a25b4fce87f20f7a2b17ac7fa4f7634d74541acaa7e4da8ba59fd2937882b7c6adc1536afd92891829a1a0844836df0e91938463e6b8af9ab39d7b5be237cffe349f34d259565d4bec314c5c849c2a35b1bd4383c293331acce0ea97b570f84fc7b5b693b2aa0396125d1493f976da6d22ccd34c93a54ff5576f6d65cbe441b42a93b0478cf8c0d6ef0f9850ee2a7d30da3deee5538d9c75df3d87c09e2b9e369fb1ca109e623bb540e90807f6079f8879a021c304f08514a3c1d5ffda1001fe80d9594f20a7798355caf64795daa4b10ea0dd70caae3afdd57c1ff5120f2c08f1afa68a8c3413775ac3787390041fe5bba3cb048ebbe0056ff7ae89d52190dd69acfe1f6d6a45424f86d0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:06:59.980 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:06:59.986 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=54b4eab854449ef6904f9341ae08ccbdd8ab50bf1aef622dbc92e359c6fbb30a, next_point=0291f85235a104a71f4f6d28f5d3c84891fb7ecf73acf41272c39c41db221e4c91) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:06:59.991 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.020 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=acc9500344d5b22efd9b81364614872d3da7d9c913a31f747c5d62d33862b42a, next_point=02cb98e9c08c48977025b28f86c1adf59b984e26d7e6c903f69cc21238d87b34db) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.033 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): settle-fail-filter: count=1, filter=[0]
2024-11-29 18:07:00.033 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): Failed to send HTLC with ID=2832
2024-11-29 18:07:00.033 [DBG] HSWC: Closed completed FAIL circuit for 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323: (0:0:0, 22159) <-> (859:1:0, 2832)
2024-11-29 18:07:00.033 [DBG] HSWC: Storing result for attemptID=22159
2024-11-29 18:07:00.037 [DBG] HSWC: Received network result *lnwire.UpdateFailHTLC for attemptID=22159
2024-11-29 18:07:00.038 [DBG] CRTR: [default]: Reporting pair success to Mission Control: pair=02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73 -> 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c, amt=103302 mSAT
2024-11-29 18:07:00.041 [DBG] HSWC: Tearing down circuit with FAIL pkt, removing circuit=(Chan ID=0:0:0, HTLC ID=22159) with keystone=(Chan ID=859:1:0, HTLC ID=2832)
2024-11-29 18:07:00.041 [DBG] CRTR: Setting 02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73->034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c range to [103302 mSAT-0 mSAT]
2024-11-29 18:07:00.041 [DBG] CRTR: [default]: Reporting pair failure to Mission Control: pair=025dcebc849966e84634e26e3b7d8ada5d5344c31ce22e00351abc53b62133926f -> 03b06f2a53e4c8a0b3aa47627ed94e6082cdbb256a8b1b22fe72ccdbddbaf41242, amt=0 mSAT
2024-11-29 18:07:00.041 [DBG] CRTR: Setting 025dcebc849966e84634e26e3b7d8ada5d5344c31ce22e00351abc53b62133926f->03b06f2a53e4c8a0b3aa47627ed94e6082cdbb256a8b1b22fe72ccdbddbaf41242 range to [0 mSAT-0 mSAT]
2024-11-29 18:07:00.041 [WRN] CRTR: Attempt 22159 for payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323 failed: InvalidBlinding@1
2024-11-29 18:07:00.045 [DBG] HSWC: Closed FAIL circuit for 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323: (0:0:0, 22159) <-> (859:1:0, 2832)
2024-11-29 18:07:00.070 [DBG] CRTR: Result collected for attempt 22159 in payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323
2024-11-29 18:07:00.077 [DBG] CRTR: Payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323: status=In Flight, active_shards=0, rem_value=100000 mSAT, fee_limit=100000 mSAT
2024-11-29 18:07:00.077 [DBG] CRTR: PaymentSession(45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323): pathfinding for amt=100000 mSAT
2024-11-29 18:07:00.078 [DBG] CRTR: Pathfinding absolute attempt cost: 100.1 sats
2024-11-29 18:07:00.078 [DBG] CRTR: Amount 103302 mSAT not in range for edge 930186837164032
2024-11-29 18:07:00.078 [DBG] CRTR: Found route: probability=0.10260039450125205, hops=4, fee=3302 mSAT
2024-11-29 18:07:00.078 [DBG] CRTR: Pathfinding perf metrics: nodes=8, edges=19, time=1.301458ms
2024-11-29 18:07:00.097 [DBG] CRTR: Sending HTLC attempt(id=22160, total_amt=103302 mSAT, first_hop_amt={103302}) for payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323
2024-11-29 18:07:00.101 [DBG] CRTR: Attempt 22160 for payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323 successfully sent to switch, route: 944480488325120 (103302 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT), cltv 1234
2024-11-29 18:07:00.101 [DBG] CRTR: Collecting result for attempt 22160 in payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323
2024-11-29 18:07:00.101 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): queueing keystone of ADD open circuit: (Chan ID=0:0:0, HTLC ID=22160)->(Chan ID=859:1:0, HTLC ID=2833)
2024-11-29 18:07:00.101 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending UpdateAddHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2833, amt=103302 mSAT, expiry=1234, hash=45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323, blinding_point=, custom_records=map[106823:[0]]) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.102 [DBG] HSWC: Subscribing to result for attemptID=22160
2024-11-29 18:07:00.108 [DBG] CRTR: Payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323: status=In Flight, active_shards=1, rem_value=0 mSAT, fee_limit=96698 mSAT
2024-11-29 18:07:00.165 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): removing Add packet (Chan ID=0:0:0, HTLC ID=22160) from mailbox
2024-11-29 18:07:00.165 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.172 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=37cb1e59328780705a8b4e7a7870be79b17a526cb4ebeffbaf1b6f8f28e3021d, next_point=03fee998e5dea699f15229d814bd01394d0f56dd0842b1c39a5562d4b1b4509ec5) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.176 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.193 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=26cd749974fe3e8089e17430817c2cd14606fa737d7d320ade7ba05cdbb6d80f, next_point=037ea15d8aeb3deaf3cc2da0bd012b586fce0645c9dacd2428540afa06fdb5d9be) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.232 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received UpdateFailHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2833, reason=26253d6b296e96c88db54ac9cad31690e3ad87c247a7f78035bed0b124ac6fbfee9670af265ffe918e48af0a0b45dd24844a03c9c8375a3927c78face47ec467314ec439d81a991d7c11c571d5d673837249945cf9f3fe01e3e8d73916f21b8b4a253bcaa455da0c75a1eab53f8312bd834519329e1c144358709cc83d924a463bae587d4dd4678360c3cabd3e2d1605cf8f68959c5bd5228a4821e0d5887addf6d66858ab00be56904ec7114317796de04dce3d699a4cd79a40b55f0adf510c8ed80f637ca227dd14f80ca42d41182d6aa4c60ef2891bd9378512d2d6b7852bc3e0fd8690be9dce51858ad5ebdbc53be366dfa2dab218f1bffb06b059d773f6c6865b9f4fd8d19e8d262969339eabe232b7080dd4054863b73da196c7ba47941fd80f40) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.239 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.245 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=60f29f300c087c0ecd6f93dea9d9c1ea30e748fe0ecaf81a8b7fa95da7f7d4b9, next_point=035e2f0cdd3dda825d21f891c6a500afb15c8e5af9a4834f7707e62df9af267c00) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.250 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.278 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=818596a2c2e3f352e266db6988465aea23051ce8538789987bb46228c2ec0692, next_point=021ea5ee870b77dd81c108dfd92bad11bdd24a6aaf62c5105c7f6973763ef97c7f) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:07:00.292 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): settle-fail-filter: count=1, filter=[0]
2024-11-29 18:07:00.292 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): Failed to send HTLC with ID=2833
2024-11-29 18:07:00.292 [DBG] HSWC: Closed completed FAIL circuit for 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323: (0:0:0, 22160) <-> (859:1:0, 2833)
2024-11-29 18:07:00.292 [DBG] HSWC: Storing result for attemptID=22160
2024-11-29 18:07:00.296 [DBG] HSWC: Received network result *lnwire.UpdateFailHTLC for attemptID=22160
2024-11-29 18:07:00.297 [DBG] CRTR: [default]: Reporting pair success to Mission Control: pair=02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73 -> 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c, amt=103302 mSAT
2024-11-29 18:07:00.300 [DBG] HSWC: Tearing down circuit with FAIL pkt, removing circuit=(Chan ID=0:0:0, HTLC ID=22160) with keystone=(Chan ID=859:1:0, HTLC ID=2833)
2024-11-29 18:07:00.300 [DBG] CRTR: Setting 02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73->034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c range to [103302 mSAT-0 mSAT]
2024-11-29 18:07:00.300 [DBG] CRTR: [default]: Reporting pair failure to Mission Control: pair=025dcebc849966e84634e26e3b7d8ada5d5344c31ce22e00351abc53b62133926f -> 03b06f2a53e4c8a0b3aa47627ed94e6082cdbb256a8b1b22fe72ccdbddbaf41242, amt=0 mSAT
2024-11-29 18:07:00.300 [DBG] CRTR: Setting 025dcebc849966e84634e26e3b7d8ada5d5344c31ce22e00351abc53b62133926f->03b06f2a53e4c8a0b3aa47627ed94e6082cdbb256a8b1b22fe72ccdbddbaf41242 range to [0 mSAT-0 mSAT]
2024-11-29 18:07:00.300 [WRN] CRTR: Attempt 22160 for payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323 failed: InvalidBlinding@1
2024-11-29 18:07:00.303 [DBG] HSWC: Closed FAIL circuit for 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323: (0:0:0, 22160) <-> (859:1:0, 2833)
2024-11-29 18:07:00.324 [DBG] CRTR: Result collected for attempt 22160 in payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323
2024-11-29 18:07:00.331 [DBG] CRTR: Payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323: status=In Flight, active_shards=0, rem_value=100000 mSAT, fee_limit=100000 mSAT
2024-11-29 18:07:00.331 [DBG] CRTR: PaymentSession(45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323): pathfinding for amt=100000 mSAT
2024-11-29 18:07:00.331 [DBG] CRTR: Pathfinding absolute attempt cost: 100.1 sats
2024-11-29 18:07:00.331 [DBG] CRTR: Amount 103302 mSAT not in range for edge 930186837164032
2024-11-29 18:07:00.331 [DBG] CRTR: Found route: probability=0.10260033668913819, hops=4, fee=3302 mSAT
2024-11-29 18:07:00.331 [DBG] CRTR: Pathfinding perf metrics: nodes=8, edges=19, time=166.584µs
2024-11-29 18:07:00.348 [DBG] CRTR: Sending HTLC attempt(id=22161, total_amt=103302 mSAT, first_hop_amt={103302}) for payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323
2024-11-29 18:07:00.352 [DBG] CRTR: Attempt 22161 for payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323 successfully sent to switch, route: 944480488325120 (103302 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT), cltv 1234
2024-11-29 18:07:00.352 [DBG] CRTR: Collecting result for attempt 22161 in payment 45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323
2024-11-29 18:07:00.352 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): queueing keystone of ADD open circuit: (Chan ID=0:0:0, HTLC ID=22161)->(Chan ID=859:1:0, HTLC ID=2834)
2024-11-29 18:07:00.352 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending UpdateAddHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2834, amt=103302 mSAT, expiry=1234, hash=45f1fdda6f8d45a7206fa7d7081fd115ea56964a010ac172e1815364ddd91323, blinding_point=, custom_records=map[106823:[0]]) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739

and from the cli view:

| INVALID_ONION_BLINDING @ 1st hop |        0.517 |        0.750 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        0.759 |        0.972 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        0.984 |        1.196 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        1.204 |        1.417 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        1.434 |        1.648 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        1.667 |        1.869 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        1.886 |        2.098 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        2.115 |        2.325 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        2.341 |        2.549 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        2.561 |        2.764 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        2.773 |        2.994 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        3.011 |        3.209 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        3.220 |        3.428 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        3.439 |        3.655 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        3.661 |        3.860 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        3.877 |        4.082 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        4.099 |        4.309 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        4.320 |        4.526 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        4.537 |        4.741 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        4.753 |        4.955 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        4.970 |        5.174 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        5.196 |        5.420 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        5.432 |        5.643 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        5.661 |        5.864 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        5.878 |        6.117 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        6.130 |        6.340 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        6.360 |        6.560 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        6.579 |        6.796 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        6.808 |        7.018 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        7.031 |        7.229 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        7.243 |        7.443 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        7.458 |        7.661 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        7.673 |        7.878 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        7.893 |        8.118 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        8.137 |        8.334 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        8.349 |        8.558 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        8.580 |        8.830 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        8.848 |        9.058 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        9.070 |        9.267 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        9.286 |        9.517 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        9.592 |        9.879 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |        9.895 |       10.097 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| INVALID_ONION_BLINDING @ 1st hop |       10.112 |       10.328 | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |
| IN_FLIGHT                        |       10.349 |            - | 100          | 3.302 |     1234 | 944480488325120 | alice->0220d8->025dce->03b06f |

@ziggie1984
Copy link
Collaborator Author

same for a bigger amount:

| INVALID_ONION_BLINDING @ 2nd hop |        0.031 |        0.446 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        0.455 |        0.823 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        0.838 |        1.191 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        1.200 |        1.550 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        1.555 |        1.906 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        1.922 |        2.295 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        2.312 |        2.651 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        2.666 |        3.033 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        3.050 |        3.404 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        3.420 |        3.766 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        3.782 |        4.119 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 2nd hop |        4.134 |        6.078 | 5000         | 4.332 |     1314 | 964271697625088 | My Lightning ☇->alice->03dd7d->02a8cf->033948 |
| INVALID_ONION_BLINDING @ 1st hop |        6.089 |        6.313 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        6.324 |        6.578 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        6.594 |        6.831 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        6.849 |        7.096 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        7.112 |        7.323 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        7.341 |        7.561 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        7.569 |        7.778 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        7.795 |        8.007 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        8.025 |        8.231 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        8.248 |        8.467 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        8.487 |        8.703 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        8.721 |        8.931 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        8.939 |        9.219 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948                 |
| INVALID_ONION_BLINDING @ 1st hop |        9.237 |        9.465 | 5000         | 3.327 |     1234 | 944480488325120 | alice->03dd7d->02a8cf->033948
2024-11-29 18:13:01.324 [DBG] CRTR: Attempt 23017 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 successfully sent to switch, route: 944480488325120 (5003327 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT), cltv 1234
2024-11-29 18:13:01.324 [DBG] CRTR: Collecting result for attempt 23017 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:01.324 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): queueing keystone of ADD open circuit: (Chan ID=0:0:0, HTLC ID=23017)->(Chan ID=859:1:0, HTLC ID=2841)
2024-11-29 18:13:01.324 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending UpdateAddHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2841, amt=5003327 mSAT, expiry=1234, hash=8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7, blinding_point=, custom_records=map[106823:[0]]) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.325 [DBG] HSWC: Subscribing to result for attemptID=23017
2024-11-29 18:13:01.325 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=1, rem_value=0 mSAT, fee_limit=246673 mSAT
2024-11-29 18:13:01.387 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): removing Add packet (Chan ID=0:0:0, HTLC ID=23017) from mailbox
2024-11-29 18:13:01.387 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.394 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=84368afe2dfc73669997f266be120f04bc90f6c9938f4d250c17ae4cec3135de, next_point=031d628ab856c71d3c6881f9518643bef570b81b63589f06af18f475283e15f992) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.398 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.413 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=0d9fab2d2c6eb46cf7468f1ddc4d15ffe5a7394443d541dbc87467ae09fc1aff, next_point=0272657022a2e9a85d488dedf0603f3ace3de2a5142c2a9fdf10db7fa81f394d93) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.462 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received UpdateFailHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2841, reason=1d5c3fdce1b1d3c237b898b93caacd55ca2be6a59b75aed3eb8f071ea795bf243111177fd5426f2e4ae411d247a3e3c9311aa5a67481190c40ddf2794abc4b24973c5e1def5a52b1fa5303ccfeace9ea1563e54b71fe80d7c3cc8cf625d34869d2e076fe7e7ea46142d6a93e15ba1b0f1ef3818fda0c6069afec7b13677d46e91e6f68bd0945090fb103b8a41c1e90979d277094e6f49cded62d48bebacce345efe60b384e498b715169faab6f2520ed4fc81963e12fd82037fa95bafc502ef197e21a42e9ddb4088ace9665cb9d271851ed0cf8c6d060683de845e7f7dc202012af489831cc2054271c674990e73d5df3ed82070b7f0540c780bf7d42a52b293be982e17454032a5ef2b89a2bec65435da3bedcdf66c26ca431bbcef2f746588134812f) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.469 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.474 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=60808f959b03d6ed0a45a1965ca5b6bdcea2b013d5fd98eec926aa5911d63f4a, next_point=0387f341f2da1ff1f2548e60a3133c17160806213315267bfcda6b16978c67a169) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.480 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.500 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=3b433beff07ddf04ff48ee8b3e9791b58ca4bf765ba7cf2b4026753b9e610f35, next_point=02f625966df33b65fc145983423c2e62cae7c8323b6a4a3c8c0bf0da7e9614ea0e) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.517 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): settle-fail-filter: count=1, filter=[0]
2024-11-29 18:13:01.517 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): Failed to send HTLC with ID=2841
2024-11-29 18:13:01.518 [DBG] HSWC: Closed completed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23017) <-> (859:1:0, 2841)
2024-11-29 18:13:01.518 [DBG] HSWC: Storing result for attemptID=23017
2024-11-29 18:13:01.522 [DBG] HSWC: Received network result *lnwire.UpdateFailHTLC for attemptID=23017
2024-11-29 18:13:01.523 [DBG] CRTR: [default]: Reporting pair success to Mission Control: pair=02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73 -> 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c, amt=5003327 mSAT
2024-11-29 18:13:01.527 [DBG] CRTR: Setting 02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73->034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c range to [5003327 mSAT-0 mSAT]
2024-11-29 18:13:01.527 [DBG] HSWC: Tearing down circuit with FAIL pkt, removing circuit=(Chan ID=0:0:0, HTLC ID=23017) with keystone=(Chan ID=859:1:0, HTLC ID=2841)
2024-11-29 18:13:01.527 [DBG] CRTR: [default]: Reporting pair failure to Mission Control: pair=02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae -> 03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298, amt=0 mSAT
2024-11-29 18:13:01.527 [DBG] CRTR: Setting 02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae->03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298 range to [0 mSAT-0 mSAT]
2024-11-29 18:13:01.527 [WRN] CRTR: Attempt 23017 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 failed: InvalidBlinding@1
2024-11-29 18:13:01.533 [DBG] CRTR: Result collected for attempt 23017 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:01.534 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=0, rem_value=5000000 mSAT, fee_limit=250000 mSAT
2024-11-29 18:13:01.534 [DBG] CRTR: PaymentSession(8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7): pathfinding for amt=5000000 mSAT
2024-11-29 18:13:01.534 [DBG] CRTR: Pathfinding absolute attempt cost: 105 sats
2024-11-29 18:13:01.534 [DBG] CRTR: Amount 5003327 mSAT not in range for edge 930186837164032
2024-11-29 18:13:01.534 [DBG] CRTR: Found route: probability=0.05130812580074241, hops=4, fee=3327 mSAT
2024-11-29 18:13:01.534 [DBG] CRTR: Pathfinding perf metrics: nodes=8, edges=19, time=185.917µs
2024-11-29 18:13:01.540 [DBG] CRTR: Sending HTLC attempt(id=23018, total_amt=5003327 mSAT, first_hop_amt={5003327}) for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:01.544 [DBG] CRTR: Attempt 23018 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 successfully sent to switch, route: 944480488325120 (5003327 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT), cltv 1234
2024-11-29 18:13:01.544 [DBG] CRTR: Collecting result for attempt 23018 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:01.545 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): queueing keystone of ADD open circuit: (Chan ID=0:0:0, HTLC ID=23018)->(Chan ID=859:1:0, HTLC ID=2842)
2024-11-29 18:13:01.545 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending UpdateAddHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2842, amt=5003327 mSAT, expiry=1234, hash=8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7, blinding_point=, custom_records=map[106823:[0]]) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.547 [DBG] HSWC: Subscribing to result for attemptID=23018
2024-11-29 18:13:01.547 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=1, rem_value=0 mSAT, fee_limit=246673 mSAT
2024-11-29 18:13:01.550 [DBG] HSWC: Closed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23017) <-> (859:1:0, 2841)
2024-11-29 18:13:01.608 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): removing Add packet (Chan ID=0:0:0, HTLC ID=23018) from mailbox
2024-11-29 18:13:01.608 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.616 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=ba1cd17b76dfd8233520e1a6df32fb9a646336a9a5e244e109a96ed1f48b6df1, next_point=026a23761cf393611bd36d87e405b4230e2e867e5f5bf48886f6b70b9c23054c12) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.622 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.637 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=2f6b422d4946a26e57309a388c21aec202d4931bee068a2704db3d031b5c557c, next_point=02cf2d50d0df4b96efaa0c940552984061979fbb580dfe792b0ba956da70077bef) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.680 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received UpdateFailHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2842, reason=90ef779f64e7efa7b62b3a7f060132d507d8831107032623b6cffa31eff71c22b30609476d938707e44c91d3f866c6f2b478a8661d297906b5beebcd819c5d3c63314d759e9c419ac89ba6fe883e2d3aaecdbfc8f2156420bea4548ad106288ef47635b1d7e5327c1533e872642919957d72203aa2c35c2e802d2438a7dae2e2dea227e7d340e560b3352cfce372aad40722f4c4de947ceb2a8c861c89865abb77cf6791a5076e7fdd0d341bb478c2f08241aafaf27a39a040eceb6fd90da8d5f9de5d0db6537ad7df07b548ee7002e0ac0f15d81f21b893f6891ca8c79a1800462eb2b725519404d9627bd1f0b961af569778c875d12d4f89498fe7209be5a70c5dea2c1eef4ea57dee29229f3c65353174b229195aa166fc1c085ce907412e1f2743f0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.686 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.692 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=a4d760919783a8993531070c17f66d111fcdd33205a6efc330359738ff1d13ed, next_point=03a44ba80a6fc36dbfee3d0abcbbd7f31f18b2cb2cf5994e28e464a98a4e84cdce) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.698 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.721 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=59ee5cda2c4cbf665d5a320c6f4626abea923c20b458a5271b34542ee4c18215, next_point=0384edf11f03aa7409deefa30574a2fb1eed264bc547c7a95fd4f2878592c7de98) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.735 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): settle-fail-filter: count=1, filter=[0]
2024-11-29 18:13:01.735 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): Failed to send HTLC with ID=2842
2024-11-29 18:13:01.735 [DBG] HSWC: Closed completed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23018) <-> (859:1:0, 2842)
2024-11-29 18:13:01.735 [DBG] HSWC: Storing result for attemptID=23018
2024-11-29 18:13:01.740 [DBG] HSWC: Received network result *lnwire.UpdateFailHTLC for attemptID=23018
2024-11-29 18:13:01.741 [DBG] CRTR: [default]: Reporting pair success to Mission Control: pair=02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73 -> 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c, amt=5003327 mSAT
2024-11-29 18:13:01.744 [DBG] HSWC: Tearing down circuit with FAIL pkt, removing circuit=(Chan ID=0:0:0, HTLC ID=23018) with keystone=(Chan ID=859:1:0, HTLC ID=2842)
2024-11-29 18:13:01.744 [DBG] CRTR: Setting 02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73->034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c range to [5003327 mSAT-0 mSAT]
2024-11-29 18:13:01.744 [DBG] CRTR: [default]: Reporting pair failure to Mission Control: pair=02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae -> 03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298, amt=0 mSAT
2024-11-29 18:13:01.744 [DBG] CRTR: Setting 02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae->03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298 range to [0 mSAT-0 mSAT]
2024-11-29 18:13:01.744 [WRN] CRTR: Attempt 23018 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 failed: InvalidBlinding@1
2024-11-29 18:13:01.749 [DBG] HSWC: Closed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23018) <-> (859:1:0, 2842)
2024-11-29 18:13:01.759 [DBG] CRTR: Result collected for attempt 23018 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:01.760 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=0, rem_value=5000000 mSAT, fee_limit=250000 mSAT
2024-11-29 18:13:01.760 [DBG] CRTR: PaymentSession(8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7): pathfinding for amt=5000000 mSAT
2024-11-29 18:13:01.760 [DBG] CRTR: Pathfinding absolute attempt cost: 105 sats
2024-11-29 18:13:01.760 [DBG] CRTR: Amount 5003327 mSAT not in range for edge 930186837164032
2024-11-29 18:13:01.760 [DBG] CRTR: Found route: probability=0.05130928445199554, hops=4, fee=3327 mSAT
2024-11-29 18:13:01.760 [DBG] CRTR: Pathfinding perf metrics: nodes=8, edges=19, time=218.583µs
2024-11-29 18:13:01.764 [DBG] CRTR: Sending HTLC attempt(id=23019, total_amt=5003327 mSAT, first_hop_amt={5003327}) for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:01.768 [DBG] CRTR: Attempt 23019 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 successfully sent to switch, route: 944480488325120 (5003327 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT), cltv 1234
2024-11-29 18:13:01.768 [DBG] CRTR: Collecting result for attempt 23019 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:01.768 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): queueing keystone of ADD open circuit: (Chan ID=0:0:0, HTLC ID=23019)->(Chan ID=859:1:0, HTLC ID=2843)
2024-11-29 18:13:01.768 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending UpdateAddHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2843, amt=5003327 mSAT, expiry=1234, hash=8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7, blinding_point=, custom_records=map[106823:[0]]) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.769 [DBG] HSWC: Subscribing to result for attemptID=23019
2024-11-29 18:13:01.769 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=1, rem_value=0 mSAT, fee_limit=246673 mSAT
2024-11-29 18:13:01.830 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): removing Add packet (Chan ID=0:0:0, HTLC ID=23019) from mailbox
2024-11-29 18:13:01.830 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.838 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=6c64bdc41ecde0ab729102adf9802a1d91b6e067400450ca115e8933f62ca3f3, next_point=031d50bdae43898323d8b80345851e34eec1be701f6bfd115d43fd58971400acec) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.843 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.856 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=1ab1b9b7cc2f763c102ce75fa6f1452ed59a684460ae7e55cb5e4f3cb525b419, next_point=0313d1f85cdef6957eebd715d742321b1209ce6df8fce79804f6cdfa42eda98746) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.906 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received UpdateFailHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2843, reason=32c9ec5c961feed37e8dec5478a7058199fd8b0bcce92fd88bce7cab99eba2e05ca9bef3d3eacb852230c43b85b7a9cd09ed588f57d1ccba28c67391c10b7b9176322851059fd0de27650e6aad85caebe145619bc5d06f59bebd94a147baed78800d1da34a97a99644be947488d09994f63e7fadde3789c5424910d754a7da7bc26d6e0e6a9d94319126168120b95a2be33a5b44a23a3584e52aa9a5c597e9aeed67a813fe0216c5da10208305b5676cece49ce3ab16b2f1db0e039ae192681fb87eff6af9146335b6174747b79a148ccd5f5abda2d633b1cac9a1659ac42c49235b30602b80cbed6f5faa746e71b912f1fdff55c26f86ffd64fc849cf5c40a21b726e77e9bca8e2c264f3e294523203f699d9cba2ffc14572aa4ef5f246d7b2e67af4f2) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.914 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.919 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=bcfcecd8ceec76a34112eae079cf5a81e644cf5614f1b919c58a3a2ffa8ce808, next_point=02a5e3301b5b478bac85a5467cf63d741ce18bae86127e4420246e35086deb2a7c) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.924 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.951 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=3cd27556690efe8f2e484cddb763ae0e469e5fb5611bd0eb8420e4fd9bfa2832, next_point=03096b29a9996ff630df5292d4d41141d3fcf4062d3a6fe86ab79c0567f120cacc) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:01.965 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): settle-fail-filter: count=1, filter=[0]
2024-11-29 18:13:01.965 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): Failed to send HTLC with ID=2843
2024-11-29 18:13:01.965 [DBG] HSWC: Closed completed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23019) <-> (859:1:0, 2843)
2024-11-29 18:13:01.965 [DBG] HSWC: Storing result for attemptID=23019
2024-11-29 18:13:01.969 [DBG] HSWC: Received network result *lnwire.UpdateFailHTLC for attemptID=23019
2024-11-29 18:13:01.970 [DBG] CRTR: [default]: Reporting pair failure to Mission Control: pair=02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae -> 03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298, amt=0 mSAT
2024-11-29 18:13:01.973 [DBG] HSWC: Tearing down circuit with FAIL pkt, removing circuit=(Chan ID=0:0:0, HTLC ID=23019) with keystone=(Chan ID=859:1:0, HTLC ID=2843)
2024-11-29 18:13:01.973 [DBG] CRTR: Setting 02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae->03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298 range to [0 mSAT-0 mSAT]
2024-11-29 18:13:01.973 [DBG] CRTR: [default]: Reporting pair success to Mission Control: pair=02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73 -> 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c, amt=5003327 mSAT
2024-11-29 18:13:01.973 [DBG] CRTR: Setting 02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73->034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c range to [5003327 mSAT-0 mSAT]
2024-11-29 18:13:01.973 [WRN] CRTR: Attempt 23019 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 failed: InvalidBlinding@1
2024-11-29 18:13:01.977 [DBG] HSWC: Closed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23019) <-> (859:1:0, 2843)
2024-11-29 18:13:01.989 [DBG] CRTR: Result collected for attempt 23019 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:01.990 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=0, rem_value=5000000 mSAT, fee_limit=250000 mSAT
2024-11-29 18:13:01.990 [DBG] CRTR: PaymentSession(8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7): pathfinding for amt=5000000 mSAT
2024-11-29 18:13:01.990 [DBG] CRTR: Pathfinding absolute attempt cost: 105 sats
2024-11-29 18:13:01.991 [DBG] CRTR: Amount 5003327 mSAT not in range for edge 930186837164032
2024-11-29 18:13:01.991 [DBG] CRTR: Found route: probability=0.05131042760025676, hops=4, fee=3327 mSAT
2024-11-29 18:13:01.991 [DBG] CRTR: Pathfinding perf metrics: nodes=8, edges=19, time=204.292µs
2024-11-29 18:13:01.997 [DBG] CRTR: Sending HTLC attempt(id=23020, total_amt=5003327 mSAT, first_hop_amt={5003327}) for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:02.001 [DBG] CRTR: Attempt 23020 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 successfully sent to switch, route: 944480488325120 (5003327 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT), cltv 1234
2024-11-29 18:13:02.001 [DBG] CRTR: Collecting result for attempt 23020 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:02.001 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): queueing keystone of ADD open circuit: (Chan ID=0:0:0, HTLC ID=23020)->(Chan ID=859:1:0, HTLC ID=2844)
2024-11-29 18:13:02.001 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending UpdateAddHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2844, amt=5003327 mSAT, expiry=1234, hash=8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7, blinding_point=, custom_records=map[106823:[0]]) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.002 [DBG] HSWC: Subscribing to result for attemptID=23020
2024-11-29 18:13:02.003 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=1, rem_value=0 mSAT, fee_limit=246673 mSAT
2024-11-29 18:13:02.058 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): removing Add packet (Chan ID=0:0:0, HTLC ID=23020) from mailbox
2024-11-29 18:13:02.058 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.063 [DBG] CRTR: Stored mission control results: 5 added, 0 deleted
2024-11-29 18:13:02.067 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=0149918c0b1eaa79453c4e8928134b9b29fbb8961b95eab381d7a635af5b7727, next_point=036504da0224ff8d43e38cc3312ff71baa9846c3cfcb958cb3c2b8787476be6f43) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.072 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.085 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=7d7dc370684112852752fb766647a676a493619c4fc2ff02a6091955500725f0, next_point=02a2536b89b5b58a678ef85983ff3f4d29212caa49b548ab9a011bee4bcd151121) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.129 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received UpdateFailHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2844, reason=ee3fa6ff25b893c2b35ef420fd471dcbc166b334decc53441605743d557e14234489cea7e069e24fd2b2dbe22897635587a85a156db5be0979dd04f38be7da21c5acb51809568b0ee512365f42751d4f9ce14a4bed38215c804d80ebf48c7c0da48fe760b1fde01bceb2801c016af5e9e696fe4e5b66a2d35fdff05ee96ac5a80196b7e00a9570f47557a21900da1e0c40118cb0a42d88657515062336a023242df2fc79b942ad4a8f9281e01909fe38ee5705e9837e808693607515cc8061c8c3445c5b89a936c99ec68f23d80093417910d0f8a85c54709cd799fccefdee9359f6f7ebdbc1c807917a616033e8287ea58789df6a82cf8b084aaf131d847620ae5592a4b357a138ebe2d0b0deb0806d14e5f5ddb666e63e37e34de3ba3e4edf7c1b5431) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.137 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.143 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=5e789cfa1da7199da0375d28f48f97a38553469044c4a4c99e45b3fea8282fd2, next_point=0326cefdecd315ffead5443cd306b3cbbf0c2b32681e12d7b9e80ae096f296d1f1) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.148 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.176 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=c1f34281b7554b9506c22a3575ec1b6256f2f53357e00ffc317c5755b955b708, next_point=036c8ffa195907135c8a27ea6a747edc44ae1ea7158bf185e8a4cd1f5f186328e0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.188 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): settle-fail-filter: count=1, filter=[0]
2024-11-29 18:13:02.188 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): Failed to send HTLC with ID=2844
2024-11-29 18:13:02.188 [DBG] HSWC: Closed completed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23020) <-> (859:1:0, 2844)
2024-11-29 18:13:02.188 [DBG] HSWC: Storing result for attemptID=23020
2024-11-29 18:13:02.193 [DBG] HSWC: Received network result *lnwire.UpdateFailHTLC for attemptID=23020
2024-11-29 18:13:02.194 [DBG] CRTR: [default]: Reporting pair success to Mission Control: pair=02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73 -> 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c, amt=5003327 mSAT
2024-11-29 18:13:02.194 [DBG] CRTR: Setting 02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73->034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c range to [5003327 mSAT-0 mSAT]
2024-11-29 18:13:02.197 [DBG] HSWC: Tearing down circuit with FAIL pkt, removing circuit=(Chan ID=0:0:0, HTLC ID=23020) with keystone=(Chan ID=859:1:0, HTLC ID=2844)
2024-11-29 18:13:02.197 [DBG] CRTR: [default]: Reporting pair failure to Mission Control: pair=02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae -> 03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298, amt=0 mSAT
2024-11-29 18:13:02.197 [DBG] CRTR: Setting 02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae->03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298 range to [0 mSAT-0 mSAT]
2024-11-29 18:13:02.197 [WRN] CRTR: Attempt 23020 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 failed: InvalidBlinding@1
2024-11-29 18:13:02.201 [DBG] HSWC: Closed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23020) <-> (859:1:0, 2844)
2024-11-29 18:13:02.212 [DBG] CRTR: Result collected for attempt 23020 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:02.213 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=0, rem_value=5000000 mSAT, fee_limit=250000 mSAT
2024-11-29 18:13:02.213 [DBG] CRTR: PaymentSession(8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7): pathfinding for amt=5000000 mSAT
2024-11-29 18:13:02.214 [DBG] CRTR: Pathfinding absolute attempt cost: 105 sats
2024-11-29 18:13:02.214 [DBG] CRTR: Amount 5003327 mSAT not in range for edge 930186837164032
2024-11-29 18:13:02.214 [DBG] CRTR: Found route: probability=0.051311526219394415, hops=4, fee=3327 mSAT
2024-11-29 18:13:02.214 [DBG] CRTR: Pathfinding perf metrics: nodes=8, edges=19, time=375.75µs
2024-11-29 18:13:02.220 [DBG] CRTR: Sending HTLC attempt(id=23021, total_amt=5003327 mSAT, first_hop_amt={5003327}) for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:02.225 [DBG] CRTR: Attempt 23021 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 successfully sent to switch, route: 944480488325120 (5003327 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT), cltv 1234
2024-11-29 18:13:02.225 [DBG] CRTR: Collecting result for attempt 23021 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:02.225 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): queueing keystone of ADD open circuit: (Chan ID=0:0:0, HTLC ID=23021)->(Chan ID=859:1:0, HTLC ID=2845)
2024-11-29 18:13:02.225 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending UpdateAddHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2845, amt=5003327 mSAT, expiry=1234, hash=8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7, blinding_point=, custom_records=map[106823:[0]]) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.226 [DBG] HSWC: Subscribing to result for attemptID=23021
2024-11-29 18:13:02.226 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=1, rem_value=0 mSAT, fee_limit=246673 mSAT
2024-11-29 18:13:02.286 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): removing Add packet (Chan ID=0:0:0, HTLC ID=23021) from mailbox
2024-11-29 18:13:02.286 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.296 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=87944b98fe28ae8ea3641394a79f7c05e2b96718a1bbbeb3c8e1f0b9a598850f, next_point=02ebb6f64a75b7ea527d830aaf3b1ce26a775eeca272e8c74aee59c0afe08d48db) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.301 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=1) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.313 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=addccc4878c423f1ee9dca15b20a5e313b40bdccbae6d149d5fd2d4f76f2e4e6, next_point=021b0872458f59041455beb80443fd3d975a3aebc26057f9562e7bc0e962975063) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.366 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received UpdateFailHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2845, reason=ffa55dfa51a9a874ca6f29b9b0878431b0f730656340a1589ad59e35bc21b274d2b6caed905b604e88cb1ea632010458941a3be1f457cfee09170e5664c842898c18f7ba7ba861d0f209a67fd2cabf71086728935fd361d04692584d840e99e5554a8c795fe18b9a0006373f5335bdfc29cdd545b76bb819995918b188188e8b41d2d2fefe50897b9afa33a25c3904a4b62c2d78aa09f9be577847972569e4f5c209c182bdfa7880cd428614d4db1cdc95c25a61aa86c58d98c6804360e8c46f025961a69e2e73897361c116a2f9764c992a24f95f7ff7acf592213f7726ce8642dc64c6cd4f6094097c154332d9ae99853f2378770af0b09734f730293d6013578554a4550ff64c837f7522a1bd7f0c1f426dddef3f0bdb28aa033605ae83ce930cfde8) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.377 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.382 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=70e2280be3aa6ca8eae0201659a7f98bf35658b257156c74edda15563b35eecf, next_point=0289538931338c494fd26b9fc1a918ce93f639df8315ed928640ebd02677725648) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.388 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending CommitSig(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, num_htlcs=0) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.411 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Received RevokeAndAck(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, rev=adf2a7cf052772c6d3548f0dd6b9841ae5b9c7ad8b02b1eb329388ee3fcdb491, next_point=0246417197bb1116205396d9ef9e20a1b16cbdeeba2beafe78e3b19187ab589f3b) from 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.425 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): settle-fail-filter: count=1, filter=[0]
2024-11-29 18:13:02.425 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): Failed to send HTLC with ID=2845
2024-11-29 18:13:02.425 [DBG] HSWC: Closed completed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23021) <-> (859:1:0, 2845)
2024-11-29 18:13:02.425 [DBG] HSWC: Storing result for attemptID=23021
2024-11-29 18:13:02.429 [DBG] HSWC: Received network result *lnwire.UpdateFailHTLC for attemptID=23021
2024-11-29 18:13:02.430 [DBG] CRTR: [default]: Reporting pair success to Mission Control: pair=02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73 -> 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c, amt=5003327 mSAT
2024-11-29 18:13:02.433 [DBG] HSWC: Tearing down circuit with FAIL pkt, removing circuit=(Chan ID=0:0:0, HTLC ID=23021) with keystone=(Chan ID=859:1:0, HTLC ID=2845)
2024-11-29 18:13:02.433 [DBG] CRTR: Setting 02f945e7cca9aaa586ae01f775d3f9fbee4a31ea21e46198efc5812aa085c46d73->034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c range to [5003327 mSAT-0 mSAT]
2024-11-29 18:13:02.433 [DBG] CRTR: [default]: Reporting pair failure to Mission Control: pair=02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae -> 03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298, amt=0 mSAT
2024-11-29 18:13:02.433 [DBG] CRTR: Setting 02a8cffc7a9e20b88c8449e9c7af8c27bd4914823027a9072f9a225edbde19efae->03394891d80c82fdc080aa6215e68d0218f73cb5cc2c3423bd5312493a2197b298 range to [0 mSAT-0 mSAT]
2024-11-29 18:13:02.433 [WRN] CRTR: Attempt 23021 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 failed: InvalidBlinding@1
2024-11-29 18:13:02.438 [DBG] HSWC: Closed FAIL circuit for 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: (0:0:0, 23021) <-> (859:1:0, 2845)
2024-11-29 18:13:02.451 [DBG] CRTR: Result collected for attempt 23021 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:02.453 [DBG] CRTR: Payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7: status=In Flight, active_shards=0, rem_value=5000000 mSAT, fee_limit=250000 mSAT
2024-11-29 18:13:02.453 [DBG] CRTR: PaymentSession(8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7): pathfinding for amt=5000000 mSAT
2024-11-29 18:13:02.453 [DBG] CRTR: Pathfinding absolute attempt cost: 105 sats
2024-11-29 18:13:02.453 [DBG] CRTR: Amount 5003327 mSAT not in range for edge 930186837164032
2024-11-29 18:13:02.453 [DBG] CRTR: Found route: probability=0.051312721468216325, hops=4, fee=3327 mSAT
2024-11-29 18:13:02.453 [DBG] CRTR: Pathfinding perf metrics: nodes=8, edges=19, time=203.333µs
2024-11-29 18:13:02.459 [DBG] CRTR: Sending HTLC attempt(id=23022, total_amt=5003327 mSAT, first_hop_amt={5003327}) for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:02.463 [DBG] CRTR: Attempt 23022 for payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7 successfully sent to switch, route: 944480488325120 (5003327 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT) -> 0 (0 mSAT), cltv 1234
2024-11-29 18:13:02.463 [DBG] HSWC: ChannelLink(4d371e0439980326339f0510e2701973235ecd878e2c37566219c5d059ce4a1b:0): queueing keystone of ADD open circuit: (Chan ID=0:0:0, HTLC ID=23022)->(Chan ID=859:1:0, HTLC ID=2846)
2024-11-29 18:13:02.463 [DBG] CRTR: Collecting result for attempt 23022 in payment 8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7
2024-11-29 18:13:02.463 [DBG] PEER: Peer(034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c): Sending UpdateAddHTLC(chan_id=1b4ace59d0c5196256372c8e87cd5e23731970e210059f3326039839041e374d, id=2846, amt=5003327 mSAT, expiry=1234, hash=8215fba00d55634060aaced78b5a3f34a7cb6eeac2daaf981f4902e5570d17d7, blinding_point=, custom_records=map[106823:[0]]) to 034d11a4129c8c73856c41d0c5afb5108a635ba852ead2ca2a253b01534638bd2c@127.0.0.1:9739
2024-11-29 18:13:02.464 [DBG] HSWC: Subscribing to result for attemptID=23022

@ziggie1984
Copy link
Collaborator Author

After discussions with @bitromortac we decided to change the approach:

We are going to introduce a static target key (via a nums Point) so that no node can come up with the corresponding private key to create valid routes. When searching for paths or reporting an error in a blinded route we will use this key to persist the change. This will make it easy for us to clear the current MC-Store from blinded path data when we introduce the new blinded path logic where we won't persist blinded path MC data.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blinded paths P0 very high priority issue/PR, blocker on all others
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants