Skip to content

Commit 4259a63

Browse files
committed
Make ChangeDestinationSourceSyncWrapper pub
The idea of the wrapper is that you'd use it to wrap your `ChangeDestinationSourceSync` instance. To be able to do that outside of `lightning`, we'll need to make it `pub`.
1 parent 22908ab commit 4259a63

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

lightning/src/sign/mod.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -996,12 +996,7 @@ pub trait ChangeDestinationSourceSync {
996996
}
997997

998998
/// A wrapper around [`ChangeDestinationSource`] to allow for async calls.
999-
#[cfg(any(test, feature = "_test_utils"))]
1000999
pub struct ChangeDestinationSourceSyncWrapper<T: Deref>(T)
1001-
where
1002-
T::Target: ChangeDestinationSourceSync;
1003-
#[cfg(not(any(test, feature = "_test_utils")))]
1004-
pub(crate) struct ChangeDestinationSourceSyncWrapper<T: Deref>(T)
10051000
where
10061001
T::Target: ChangeDestinationSourceSync;
10071002

0 commit comments

Comments
 (0)