@@ -435,7 +435,7 @@ impl NodeBuilder {
435435 /// Configures the [`Node`] instance to source inbound liquidity from the given
436436 /// [bLIP-51 / LSPS1] service.
437437 ///
438- /// Will mark the LSP as trusted for 0-confirmation, 0-reserve channels, see [`Config::trusted_peers_0conf_0reserve `].
438+ /// Will mark the LSP as trusted for 0-confirmation, 0-reserve channels, see [`Config::inbound_trusted_peers_0conf_0reserve `].
439439 ///
440440 /// The given `token` will be used by the LSP to authenticate the user.
441441 ///
@@ -444,7 +444,7 @@ impl NodeBuilder {
444444 & mut self , node_id : PublicKey , address : SocketAddress , token : Option < String > ,
445445 ) -> & mut Self {
446446 // Mark the LSP as trusted for 0conf, 0reserve
447- self . config . trusted_peers_0conf_0reserve . push ( node_id. clone ( ) ) ;
447+ self . config . inbound_trusted_peers_0conf_0reserve . push ( node_id. clone ( ) ) ;
448448
449449 let liquidity_source_config =
450450 self . liquidity_source_config . get_or_insert ( LiquiditySourceConfig :: default ( ) ) ;
@@ -456,7 +456,7 @@ impl NodeBuilder {
456456 /// Configures the [`Node`] instance to source just-in-time inbound liquidity from the given
457457 /// [bLIP-52 / LSPS2] service.
458458 ///
459- /// Will mark the LSP as trusted for 0-confirmation, 0-reserve channels, see [`Config::trusted_peers_0conf_0reserve `].
459+ /// Will mark the LSP as trusted for 0-confirmation, 0-reserve channels, see [`Config::inbound_trusted_peers_0conf_0reserve `].
460460 ///
461461 /// The given `token` will be used by the LSP to authenticate the user.
462462 ///
@@ -465,7 +465,7 @@ impl NodeBuilder {
465465 & mut self , node_id : PublicKey , address : SocketAddress , token : Option < String > ,
466466 ) -> & mut Self {
467467 // Mark the LSP as trusted for 0conf, 0reserve
468- self . config . trusted_peers_0conf_0reserve . push ( node_id. clone ( ) ) ;
468+ self . config . inbound_trusted_peers_0conf_0reserve . push ( node_id. clone ( ) ) ;
469469
470470 let liquidity_source_config =
471471 self . liquidity_source_config . get_or_insert ( LiquiditySourceConfig :: default ( ) ) ;
@@ -956,7 +956,7 @@ impl ArcedNodeBuilder {
956956 /// Configures the [`Node`] instance to source inbound liquidity from the given
957957 /// [bLIP-51 / LSPS1] service.
958958 ///
959- /// Will mark the LSP as trusted for 0-confirmation, 0-reserve channels, see [`Config::trusted_peers_0conf_0reserve `].
959+ /// Will mark the LSP as trusted for 0-confirmation, 0-reserve channels, see [`Config::inbound_trusted_peers_0conf_0reserve `].
960960 ///
961961 /// The given `token` will be used by the LSP to authenticate the user.
962962 ///
@@ -970,7 +970,7 @@ impl ArcedNodeBuilder {
970970 /// Configures the [`Node`] instance to source just-in-time inbound liquidity from the given
971971 /// [bLIP-52 / LSPS2] service.
972972 ///
973- /// Will mark the LSP as trusted for 0-confirmation, 0-reserve channels, see [`Config::trusted_peers_0conf_0reserve `].
973+ /// Will mark the LSP as trusted for 0-confirmation, 0-reserve channels, see [`Config::inbound_trusted_peers_0conf_0reserve `].
974974 ///
975975 /// The given `token` will be used by the LSP to authenticate the user.
976976 ///
0 commit comments