File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed
lightning/src/events/bump_transaction Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -150,17 +150,7 @@ pub trait CoinSelectionSourceSync {
150
150
fn sign_psbt ( & self , psbt : Psbt ) -> Result < Transaction , ( ) > ;
151
151
}
152
152
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 )
164
154
where
165
155
T :: Target : CoinSelectionSourceSync ;
166
156
You can’t perform that action at this time.
0 commit comments