diff --git a/public/index.html b/public/index.html index b9d9925..48811fc 100644 --- a/public/index.html +++ b/public/index.html @@ -30,6 +30,7 @@

Queue batches of lightning channels to open in a single transaction

x-flex direction="column">
Queue Channels to Open +
diff --git a/src/http.rs b/src/http.rs index 0c44be3..849f905 100644 --- a/src/http.rs +++ b/src/http.rs @@ -106,7 +106,7 @@ async fn handle_schedule( ) -> Result, HttpError> { let bytes = hyper::body::to_bytes(req.into_body()).await?; // deserialize x-www-form-urlencoded data with non-strict encoded "channel[arrayindex]" - let conf = serde_qs::Config::new(2, false); + let conf = serde_qs::Config::new(5, false); // 5 is default max_depth let request: ChannelBatch = conf.deserialize_bytes(&bytes)?; let (uri, address) = scheduler.schedule_payjoin(request).await?;