Skip to content

Commit cdac6b4

Browse files
committed
deps: bump bdk to 1.0.0
1 parent 4960119 commit cdac6b4

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

bdk-ffi/Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bdk-ffi/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ path = "uniffi-bindgen.rs"
1818
default = ["uniffi/cli"]
1919

2020
[dependencies]
21-
bdk_wallet = { version = "=1.0.0-beta.6", features = ["all-keys", "keys-bip39", "rusqlite"] }
22-
bdk_core = { version = "0.4.0" }
23-
bdk_esplora = { version = "0.20.0", default-features = false, features = ["std", "blocking", "blocking-https-rustls"] }
24-
bdk_electrum = { version = "0.20.0", default-features = false, features = ["use-rustls-ring"] }
21+
bdk_wallet = { version = "1.0.0", features = ["all-keys", "keys-bip39", "rusqlite"] }
22+
bdk_core = { version = "0.4.1" }
23+
bdk_esplora = { version = "0.20.1", default-features = false, features = ["std", "blocking", "blocking-https-rustls"] }
24+
bdk_electrum = { version = "0.20.1", default-features = false, features = ["use-rustls-ring"] }
2525
bitcoin-ffi = { git = "https://github.com/bitcoindevkit/bitcoin-ffi", tag = "v0.1.2" }
2626

2727
uniffi = { version = "=0.28.0" }

bdk-ffi/src/bdk.udl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -515,10 +515,10 @@ interface Wallet {
515515
u32 next_derivation_index(KeychainKind keychain);
516516

517517
/// Get the next unused address for the given `keychain`, i.e. the address with the lowest
518-
/// derivation index that hasn't been used.
518+
/// derivation index that hasn't been used in a transaction.
519519
///
520-
/// This will attempt to derive and reveal a new address if no newly revealed addresses
521-
/// are available. See also [`reveal_next_address`](Self::reveal_next_address).
520+
/// This will attempt to reveal a new address if all previously revealed addresses have
521+
/// been used, in which case the returned address will be the same as calling [`Wallet::reveal_next_address`].
522522
///
523523
/// **WARNING**: To avoid address reuse you must persist the changes resulting from one or more
524524
/// calls to this method before closing the wallet. See [`Wallet::reveal_next_address`].

0 commit comments

Comments
 (0)