You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use ldk_server_client::ldk_server_protos::types::RouteParametersConfig;
14
14
use ldk_server_client::ldk_server_protos::types::{
@@ -169,6 +169,27 @@ enum Commands {
169
169
)]
170
170
number_of_payments:Option<u64>,
171
171
},
172
+
UpdateChannelConfig{
173
+
#[arg(short, long)]
174
+
user_channel_id:String,
175
+
#[arg(short, long)]
176
+
counterparty_node_id:String,
177
+
#[arg(
178
+
long,
179
+
help = "Amount (in millionths of a satoshi) charged per satoshi for payments forwarded outbound over the channel. This can be updated by using update-channel-config."
help = "Amount (in milli-satoshi) charged for payments forwarded outbound over the channel, in excess of forwarding_fee_proportional_millionths. This can be updated by using update-channel-config."
185
+
)]
186
+
forwarding_fee_base_msat:Option<u32>,
187
+
#[arg(
188
+
long,
189
+
help = "The difference in the CLTV value between incoming HTLCs and an outbound HTLC forwarded over the channel."
0 commit comments