You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that I can create offers with custom blinded paths with the option dev_paths.
But I also noticed that the invoice derived from that offer does not contain the same blinded paths as the offer.
Instead I get the default (and useless) blinded path with a single hop, the destination in plain sight.
It fails at assert len(invoice_path['path'])==3 and assert invoice_path['first_node_id']==l2.info['id'].
It is ok that the invoice_paths could be different from the offer_paths, but if I specified that I wanted
to use those paths in the offer, since I have no control of the invoice generation, I would expect
those paths to be used in the invoice as well.
The text was updated successfully, but these errors were encountered:
I noticed that I can create offers with custom blinded paths with the option
dev_paths
.But I also noticed that the invoice derived from that offer does not contain the same blinded paths as the offer.
Instead I get the default (and useless) blinded path with a single hop, the destination in plain sight.
Run this tests to check
It fails at
assert len(invoice_path['path'])==3
andassert invoice_path['first_node_id']==l2.info['id']
.It is ok that the
invoice_paths
could be different from theoffer_paths
, but if I specified that I wantedto use those paths in the offer, since I have no control of the invoice generation, I would expect
those paths to be used in the invoice as well.
The text was updated successfully, but these errors were encountered: