We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ec4716 commit 6f570edCopy full SHA for 6f570ed
crates/bdk/src/wallet/mod.rs
@@ -226,7 +226,12 @@ impl Wallet {
226
NewError::Persist(_) => unreachable!("no persistence so it can't fail"),
227
})
228
}
229
+}
230
231
+impl<D> Wallet<D>
232
+where
233
+ D: PersistBackend<ChangeSet, WriteError = core::convert::Infallible>,
234
+{
235
/// Infallibly return a derived address using the external descriptor, see [`AddressIndex`] for
236
/// available address index selection strategies. If none of the keys in the descriptor are derivable
237
/// (i.e. does not end with /*) then the same address will always be returned for any [`AddressIndex`].
0 commit comments