Skip to content

Commit

Permalink
Add public util on RouteParameters for setting max path length.
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinewallace committed May 16, 2024
1 parent 7d9d4b2 commit e6785dd
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions lightning/src/routing/router.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ use bitcoin::secp256k1::{PublicKey, Secp256k1, self};

use crate::blinded_path::{BlindedHop, BlindedPath, Direction, IntroductionNode};
use crate::blinded_path::payment::{ForwardNode, ForwardTlvs, PaymentConstraints, PaymentRelay, ReceiveTlvs};
use crate::ln::types::PaymentHash;
use crate::ln::channelmanager::{ChannelDetails, PaymentId, MIN_FINAL_CLTV_EXPIRY_DELTA};
use crate::ln::{PaymentHash, PaymentPreimage};
use crate::ln::channelmanager::{ChannelDetails, PaymentId, MIN_FINAL_CLTV_EXPIRY_DELTA, RecipientOnionFields};
use crate::ln::features::{BlindedHopFeatures, Bolt11InvoiceFeatures, Bolt12InvoiceFeatures, ChannelFeatures, NodeFeatures};
use crate::ln::msgs::{DecodeError, ErrorAction, LightningError, MAX_VALUE_MSAT};
use crate::ln::onion_utils;
use crate::offers::invoice::{BlindedPayInfo, Bolt12Invoice};
use crate::onion_message::messenger::{DefaultMessageRouter, Destination, MessageRouter, OnionMessagePath};
use crate::routing::gossip::{DirectedChannelInfo, EffectiveCapacity, ReadOnlyNetworkGraph, NetworkGraph, NodeId, RoutingFees};
Expand Down Expand Up @@ -603,6 +604,17 @@ impl RouteParameters {
pub fn from_payment_params_and_value(payment_params: PaymentParameters, final_value_msat: u64) -> Self {
Self { payment_params, final_value_msat, max_total_routing_fee_msat: Some(final_value_msat / 100 + 50_000) }
}

/// Sets the maximum number of hops that can be included in a payment path, based on the provided
/// [`RecipientOnionFields`] and blinded paths.
pub fn set_max_path_length(
&mut self, recipient_onion: &RecipientOnionFields, is_keysend: bool, best_block_height: u32
) -> Result<(), ()> {
let keysend_preimage_opt = is_keysend.then(|| PaymentPreimage([42; 32]));
onion_utils::set_max_path_length(
self, recipient_onion, keysend_preimage_opt, best_block_height
)
}
}

impl Writeable for RouteParameters {
Expand Down

0 comments on commit e6785dd

Please sign in to comment.