Skip to content

Commit 262acbe

Browse files
committed
use actual values in RouteParametersConfig proto field definition
1 parent 61df07d commit 262acbe

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

ldk-server-protos/src/proto/types.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,11 +692,11 @@ message RouteParametersConfig {
692692
optional uint64 max_total_routing_fee_msat = 1;
693693

694694
// The maximum total CLTV delta we accept for the route.
695-
// Defaults to [`DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA`].
695+
// Defaults to 1008.
696696
uint32 max_total_cltv_expiry_delta = 2;
697697

698698
// The maximum number of paths that may be used by (MPP) payments.
699-
// Defaults to [`DEFAULT_MAX_PATH_COUNT`].
699+
// Defaults to 10.
700700
uint32 max_path_count = 3;
701701

702702
// Selects the maximum share of a channel's total capacity which will be

ldk-server-protos/src/types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,11 +789,11 @@ pub struct RouteParametersConfig {
789789
#[prost(uint64, optional, tag = "1")]
790790
pub max_total_routing_fee_msat: ::core::option::Option<u64>,
791791
/// The maximum total CLTV delta we accept for the route.
792-
/// Defaults to \[`DEFAULT_MAX_TOTAL_CLTV_EXPIRY_DELTA`\].
792+
/// Defaults to 1008.
793793
#[prost(uint32, tag = "2")]
794794
pub max_total_cltv_expiry_delta: u32,
795795
/// The maximum number of paths that may be used by (MPP) payments.
796-
/// Defaults to \[`DEFAULT_MAX_PATH_COUNT`\].
796+
/// Defaults to 10.
797797
#[prost(uint32, tag = "3")]
798798
pub max_path_count: u32,
799799
/// Selects the maximum share of a channel's total capacity which will be

0 commit comments

Comments
 (0)