We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
async_poll.rs
1 parent 650bdb6 commit 4e0baa6Copy full SHA for 4e0baa6
3 files changed
lightning-liquidity/src/utils/async_poll.rs
@@ -0,0 +1 @@
1
+../../../lightning/src/util/async_poll.rs
lightning-liquidity/src/utils/mod.rs
@@ -7,6 +7,9 @@ use lightning::sign::EntropySource;
7
8
use crate::lsps0::ser::LSPSRequestId;
9
10
+#[allow(dead_code)]
11
+#[allow(unused_imports)]
12
+pub(crate) mod async_poll;
13
pub mod time;
14
15
/// Converts a human-readable string representation of a short channel ID (SCID)
lightning/src/util/async_poll.rs
@@ -9,7 +9,8 @@
//! Some utilities to make working with the standard library's [`Future`]s easier
-use crate::prelude::*;
+use alloc::boxed::Box;
+use alloc::vec::Vec;
use core::future::Future;
use core::marker::Unpin;
16
use core::pin::Pin;
0 commit comments