Skip to content

Commit 8b3f6cc

Browse files
Merge pull request #3670 from arik-so/arik/trampoline/receive
Handle receiving payments via Trampoline
2 parents 0d95565 + 3970f1d commit 8b3f6cc

File tree

8 files changed

+651
-150
lines changed

8 files changed

+651
-150
lines changed

Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ check-cfg = [
6363
"cfg(ldk_bench)",
6464
"cfg(ldk_test_vectors)",
6565
"cfg(taproot)",
66-
"cfg(trampoline)",
6766
"cfg(require_route_graph_test)",
6867
"cfg(splicing)",
6968
"cfg(async_payments)",

ci/ci-tests.sh

-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,6 @@ RUSTFLAGS="--cfg=taproot" cargo test --verbose --color always -p lightning
134134
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
135135
RUSTFLAGS="--cfg=splicing" cargo test --verbose --color always -p lightning
136136
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
137-
RUSTFLAGS="--cfg=trampoline" cargo test --verbose --color always -p lightning
138-
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
139137
RUSTFLAGS="--cfg=async_payments" cargo test --verbose --color always -p lightning
140138
[ "$CI_MINIMIZE_DISK_USAGE" != "" ] && cargo clean
141139
RUSTFLAGS="--cfg=lsps1_service" cargo test --verbose --color always -p lightning-liquidity

lightning/src/blinded_path/payment.rs

+18-4
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,6 @@ pub struct ForwardTlvs {
298298
}
299299

300300
/// Data to construct a [`BlindedHop`] for forwarding a Trampoline payment.
301-
#[cfg(trampoline)]
302301
#[derive(Clone, Debug)]
303302
pub struct TrampolineForwardTlvs {
304303
/// The node id to which the trampoline node must find a route.
@@ -371,7 +370,6 @@ pub(crate) enum BlindedPaymentTlvs {
371370
/// Data to construct a [`BlindedHop`] for sending a Trampoline payment over.
372371
///
373372
/// [`BlindedHop`]: crate::blinded_path::BlindedHop
374-
#[cfg(trampoline)]
375373
pub(crate) enum BlindedTrampolineTlvs {
376374
/// This blinded payment data is for a forwarding node.
377375
Forward(TrampolineForwardTlvs),
@@ -514,6 +512,23 @@ impl Writeable for ForwardTlvs {
514512
}
515513
}
516514

515+
impl Writeable for TrampolineForwardTlvs {
516+
fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
517+
let features_opt = if self.features == BlindedHopFeatures::empty() {
518+
None
519+
} else {
520+
Some(WithoutLength(&self.features))
521+
};
522+
encode_tlv_stream!(w, {
523+
(4, self.next_trampoline, required),
524+
(10, self.payment_relay, required),
525+
(12, self.payment_constraints, required),
526+
(14, features_opt, option)
527+
});
528+
Ok(())
529+
}
530+
}
531+
517532
impl Writeable for ReceiveTlvs {
518533
fn write<W: Writer>(&self, w: &mut W) -> Result<(), io::Error> {
519534
encode_tlv_stream!(w, {
@@ -591,14 +606,13 @@ impl Readable for BlindedPaymentTlvs {
591606
}
592607
}
593608

594-
#[cfg(trampoline)]
595609
impl Readable for BlindedTrampolineTlvs {
596610
fn read<R: io::Read>(r: &mut R) -> Result<Self, DecodeError> {
597611
_init_and_read_tlv_stream!(r, {
612+
(4, next_trampoline, option),
598613
(8, next_blinding_override, option),
599614
(10, payment_relay, option),
600615
(12, payment_constraints, required),
601-
(14, next_trampoline, option),
602616
(14, features, (option, encoding: (BlindedHopFeatures, WithoutLength))),
603617
(65536, payment_secret, option),
604618
(65537, payment_context, option),

0 commit comments

Comments
 (0)