Skip to content

Commit

Permalink
f fix imports in BP
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlueMatt committed Jun 3, 2024
1 parent 92bf460 commit f96fbdd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lightning-background-processor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ use lightning::chain::chainmonitor::{ChainMonitor, Persist};
use lightning::events::{Event, PathFailure};
#[cfg(feature = "std")]
use lightning::events::EventHandler;
#[cfg(any(feature = "std", feature = "futures"))]
#[cfg(feature = "std")]
use lightning::events::EventsProvider;

use lightning::ln::channelmanager::AChannelManager;
Expand Down Expand Up @@ -57,8 +57,6 @@ use std::time::Instant;

#[cfg(not(feature = "std"))]
use alloc::boxed::Box;
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;

/// `BackgroundProcessor` takes care of tasks that (1) need to happen periodically to keep
/// Rust-Lightning running properly, and (2) either can or should be run in the background. Its
Expand Down

0 comments on commit f96fbdd

Please sign in to comment.