-
Notifications
You must be signed in to change notification settings - Fork 399
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
Handle receiving payments via Trampoline #3670
Changes from all commits
4741892
0c82cc2
a293d21
313f344
23b4c80
dc14f26
35ff142
a6f4c7f
3970f1d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -298,7 +298,6 @@ pub struct ForwardTlvs { | |
} | ||
|
||
/// Data to construct a [`BlindedHop`] for forwarding a Trampoline payment. | ||
#[cfg(trampoline)] | ||
#[derive(Clone, Debug)] | ||
pub struct TrampolineForwardTlvs { | ||
/// The node id to which the trampoline node must find a route. | ||
|
@@ -371,7 +370,6 @@ pub(crate) enum BlindedPaymentTlvs { | |
/// Data to construct a [`BlindedHop`] for sending a Trampoline payment over. | ||
/// | ||
/// [`BlindedHop`]: crate::blinded_path::BlindedHop | ||
#[cfg(trampoline)] | ||
pub(crate) enum BlindedTrampolineTlvs { | ||
/// This blinded payment data is for a forwarding node. | ||
Forward(TrampolineForwardTlvs), | ||
|
@@ -514,6 +512,23 @@ impl Writeable for ForwardTlvs { | |
} | ||
} | ||
|
||
impl Writeable for TrampolineForwardTlvs { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add to commit msg why we need to serialize blinded trampoline fwds in the future and not yet now? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I adjusted the message. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah I meant explain why this code is needed now, besides unit tests? I got that it encodes tlv data. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If it's only for the unit test, maybe squash with the test? Or just leave as is, non blocking. |
||
fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> { | ||
let features_opt = if self.features == BlindedHopFeatures::empty() { | ||
None | ||
} else { | ||
Some(WithoutLength(&self.features)) | ||
}; | ||
encode_tlv_stream!(w, { | ||
(4, self.next_trampoline, required), | ||
(10, self.payment_relay, required), | ||
(12, self.payment_constraints, required), | ||
(14, features_opt, option) | ||
}); | ||
Ok(()) | ||
} | ||
} | ||
|
||
impl Writeable for ReceiveTlvs { | ||
fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> { | ||
encode_tlv_stream!(w, { | ||
|
@@ -591,14 +606,13 @@ impl Readable for BlindedPaymentTlvs { | |
} | ||
} | ||
|
||
#[cfg(trampoline)] | ||
impl Readable for BlindedTrampolineTlvs { | ||
fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> { | ||
_init_and_read_tlv_stream!(r, { | ||
(4, next_trampoline, option), | ||
(8, next_blinding_override, option), | ||
(10, payment_relay, option), | ||
(12, payment_constraints, required), | ||
(14, next_trampoline, option), | ||
(14, features, (option, encoding: (BlindedHopFeatures, WithoutLength))), | ||
(65536, payment_secret, option), | ||
(65537, payment_context, option), | ||
|
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.
I'm not following the commit message here in 908c6bf since we don't support trampoline forwarding yet?
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.
ah, it ensures that receiving forwarding onions results in a rejection, but not a panic or some undefined behavior. I'll rephrase.
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.
Ok Joost explained that we test that we don't support forwarding basically