Skip to content

Commit 1b43559

Browse files
ldk-node needs both LSPS5ClientConfig and LSPS5ServiceConfig to have derive(Debug)
1 parent 56d8f26 commit 1b43559

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lightning-liquidity/src/lsps5/client.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl Default for SignatureStorageConfig {
6565
}
6666
}
6767

68-
#[derive(Clone)]
68+
#[derive(Debug, Clone)]
6969
/// Configuration for the LSPS5 client
7070
pub struct LSPS5ClientConfig {
7171
/// Maximum age in seconds for cached responses (default: 3600 - 1 hour).

lightning-liquidity/src/lsps5/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl TimeProvider for DefaultTimeProvider {
7979
}
8080

8181
/// Configuration for LSPS5 service.
82-
#[derive(Clone)]
82+
#[derive(Clone, Debug)]
8383
pub struct LSPS5ServiceConfig {
8484
/// Maximum number of webhooks allowed per client.
8585
pub max_webhooks_per_client: u32,

0 commit comments

Comments
 (0)