Skip to content

Commit 34e77fb

Browse files
committed
Add symlink for async_poll.rs
.. this is likely only temporary necessary as we can drop our own `dummy_waker` implementation once we bump MSRV.
1 parent 2336917 commit 34e77fb

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../lightning/src/util/async_poll.rs

lightning-liquidity/src/utils/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ use lightning::sign::EntropySource;
77

88
use crate::lsps0::ser::LSPSRequestId;
99

10+
#[allow(dead_code)]
11+
#[allow(unused_imports)]
12+
pub(crate) mod async_poll;
1013
pub mod time;
1114

1215
/// Converts a human-readable string representation of a short channel ID (SCID)

lightning/src/util/async_poll.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
//! Some utilities to make working with the standard library's [`Future`]s easier
1111
12-
use crate::prelude::*;
12+
use alloc::boxed::Box;
13+
use alloc::vec::Vec;
1314
use core::future::Future;
1415
use core::marker::Unpin;
1516
use core::pin::Pin;

0 commit comments

Comments
 (0)