We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d89b8cb + 6b6e523 commit 6af48dcCopy full SHA for 6af48dc
2 files changed
src/logger.rs
@@ -304,9 +304,10 @@ impl LdkLogger for Logger {
304
305
#[cfg(test)]
306
mod tests {
307
- use super::*;
308
use std::sync::Mutex;
309
+ use super::*;
310
+
311
/// A minimal log facade logger that captures log output for testing.
312
struct TestLogger {
313
log: Arc<Mutex<String>>,
src/runtime.rs
@@ -10,7 +10,6 @@ use std::sync::{Arc, Mutex};
10
use std::time::Duration;
11
12
use lightning::util::native_async::FutureSpawner;
13
-
14
use tokio::task::{JoinHandle, JoinSet};
15
16
use crate::config::{
0 commit comments