Skip to content

Commit 15ba10a

Browse files
Fmt Botgithub-actions[bot]
authored andcommitted
2026-06-14 automated rustfmt nightly
1 parent 926c18a commit 15ba10a

5 files changed

Lines changed: 561 additions & 562 deletions

File tree

src/liquidity/client/mod.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// This file is Copyright its original authors, visible in version control history.
2-
//
3-
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5-
// http://opensource.org/licenses/MIT>, at your option. You may not use this file except in
6-
// accordance with one or both of these licenses.
7-
8-
pub(crate) mod lsps1;
9-
pub(crate) mod lsps2;
10-
11-
pub use lsps1::LSPS1OrderStatus;
1+
// This file is Copyright its original authors, visible in version control history.
2+
//
3+
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5+
// http://opensource.org/licenses/MIT>, at your option. You may not use this file except in
6+
// accordance with one or both of these licenses.
7+
8+
pub(crate) mod lsps1;
9+
pub(crate) mod lsps2;
10+
11+
pub use lsps1::LSPS1OrderStatus;

src/liquidity/mod.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,23 @@
1010
pub(crate) mod client;
1111
pub(crate) mod service;
1212

13-
pub use client::lsps1::LSPS1Liquidity;
14-
pub use client::LSPS1OrderStatus;
15-
pub use service::lsps2::LSPS2ServiceConfig;
16-
1713
use std::collections::hash_map::Entry;
1814
use std::collections::HashMap;
1915
use std::ops::Deref;
2016
use std::sync::{Arc, Mutex, RwLock};
2117
use std::time::Duration;
2218

2319
use bitcoin::secp256k1::PublicKey;
20+
pub use client::lsps1::LSPS1Liquidity;
21+
pub use client::LSPS1OrderStatus;
2422
use lightning::ln::msgs::SocketAddress;
2523
use lightning_liquidity::events::LiquidityEvent;
2624
use lightning_liquidity::lsps0::event::LSPS0ClientEvent;
2725
use lightning_liquidity::lsps1::client::LSPS1ClientConfig as LdkLSPS1ClientConfig;
2826
use lightning_liquidity::lsps2::client::LSPS2ClientConfig as LdkLSPS2ClientConfig;
2927
use lightning_liquidity::lsps2::service::LSPS2ServiceConfig as LdkLSPS2ServiceConfig;
3028
use lightning_liquidity::{LiquidityClientConfig, LiquidityServiceConfig};
29+
pub use service::lsps2::LSPS2ServiceConfig;
3130
use tokio::sync::oneshot;
3231

3332
use crate::builder::BuildError;

0 commit comments

Comments
 (0)