]> git.bitcoin.ninja Git - rust-lightning/commit
Add BlindedPaymentPath type, to disambiguate from message paths.
authorValentine Wallace <vwallace@protonmail.com>
Mon, 5 Aug 2024 22:18:26 +0000 (15:18 -0700)
committerValentine Wallace <vwallace@protonmail.com>
Thu, 15 Aug 2024 17:03:56 +0000 (13:03 -0400)
commitcaa836e8e5cd1ab2f3f67d196ced7c26c58c0f18
tree2cea6cd8487593ab4d3065664d1b44bfdcc4571e
parent33e69958e0488f140fcd0a8cab8b86157e26cbb4
Add BlindedPaymentPath type, to disambiguate from message paths.

Next up, we'll add a BlindedMessagePath type so the API is clear which type of
path is expected in each context.
21 files changed:
fuzz/src/chanmon_consistency.rs
fuzz/src/full_stack.rs
fuzz/src/invoice_request_deser.rs
fuzz/src/refund_deser.rs
fuzz/src/router.rs
lightning/src/blinded_path/mod.rs
lightning/src/blinded_path/payment.rs
lightning/src/ln/blinded_payment_tests.rs
lightning/src/ln/channelmanager.rs
lightning/src/ln/max_payment_path_len_tests.rs
lightning/src/ln/offers_tests.rs
lightning/src/ln/onion_utils.rs
lightning/src/ln/outbound_payment.rs
lightning/src/offers/invoice.rs
lightning/src/offers/invoice_macros.rs
lightning/src/offers/invoice_request.rs
lightning/src/offers/refund.rs
lightning/src/offers/static_invoice.rs
lightning/src/offers/test_utils.rs
lightning/src/routing/router.rs
lightning/src/util/test_utils.rs