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 2966c2d commit 55b6b45Copy full SHA for 55b6b45
crates/bdk/src/wallet/mod.rs
@@ -257,7 +257,12 @@ impl Wallet {
257
NewError::Write(_) => unreachable!("mock-write must always succeed"),
258
})
259
}
260
+}
261
262
+impl<D> Wallet<D>
263
+where
264
+ D: PersistBackend<ChangeSet, WriteError = core::convert::Infallible>,
265
+{
266
/// Infallibly return a derived address using the external descriptor, see [`AddressIndex`] for
267
/// available address index selection strategies. If none of the keys in the descriptor are derivable
268
/// (i.e. does not end with /*) then the same address will always be returned for any [`AddressIndex`].
0 commit comments