@@ -685,7 +685,11 @@ fn build_with_store_internal<K: KVStore + Sync + Send + 'static>(
685
685
} ,
686
686
} ;
687
687
688
- // Initialize the ChannelManager
688
+ // Initialize the default config values.
689
+ //
690
+ // Note that methods such as Node::connect_open_channel might override some of the values set
691
+ // here, e.g. the ChannelHandshakeConfig, meaning these default values will mostly be relevant
692
+ // for inbound channels.
689
693
let mut user_config = UserConfig :: default ( ) ;
690
694
user_config. channel_handshake_limits . force_announced_channel_preference = false ;
691
695
@@ -695,11 +699,19 @@ fn build_with_store_internal<K: KVStore + Sync + Send + 'static>(
695
699
user_config. manually_accept_inbound_channels = true ;
696
700
}
697
701
698
- if liquidity_source_config. is_some ( ) {
702
+ if liquidity_source_config. and_then ( |lsc| lsc . lsps2_service . as_ref ( ) ) . is_some ( ) {
699
703
// Generally allow claiming underpaying HTLCs as the LSP will skim off some fee. We'll
700
704
// check that they don't take too much before claiming.
701
705
user_config. channel_config . accept_underpaying_htlcs = true ;
706
+
707
+ // FIXME: When we're an LSPS2 client, set maximum allowed inbound HTLC value in flight
708
+ // to 100%. We should eventually be able to set this on a per-channel basis, but for
709
+ // now we just bump the default for all channels.
710
+ user_config. channel_handshake_config . max_inbound_htlc_value_in_flight_percent_of_channel =
711
+ 100 ;
702
712
}
713
+
714
+ // Initialize the ChannelManager
703
715
let channel_manager = {
704
716
if let Ok ( res) = kv_store. read (
705
717
CHANNEL_MANAGER_PERSISTENCE_PRIMARY_NAMESPACE ,
0 commit comments