Skip to content

Commit 2fc52f0

Browse files
committed
f: remove unnecessary export
1 parent d33a788 commit 2fc52f0

File tree

1 file changed

+1
-11
lines changed
  • lightning/src/events/bump_transaction

1 file changed

+1
-11
lines changed

lightning/src/events/bump_transaction/sync.rs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -150,17 +150,7 @@ pub trait CoinSelectionSourceSync {
150150
fn sign_psbt(&self, psbt: Psbt) -> Result<Transaction, ()>;
151151
}
152152

153-
/// A wrapper around [`CoinSelectionSourceSync`] to allow for async calls.
154-
///
155-
/// This wrapper isn't intended to be used directly, because that would risk blocking an async context. Instead, it is
156-
/// built for you in [`BumpTransactionEventHandlerSync::new`].
157-
#[doc(hidden)]
158-
#[cfg(any(test, feature = "_test_utils"))]
159-
pub struct CoinSelectionSourceSyncWrapper<T: Deref>(T)
160-
where
161-
T::Target: CoinSelectionSourceSync;
162-
#[cfg(not(any(test, feature = "_test_utils")))]
163-
pub(crate) struct CoinSelectionSourceSyncWrapper<T: Deref>(T)
153+
struct CoinSelectionSourceSyncWrapper<T: Deref>(T)
164154
where
165155
T::Target: CoinSelectionSourceSync;
166156

0 commit comments

Comments
 (0)