You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue is a reminder so we don't forget to fix this.
The WordCount enum allows users to pick word counts that aren't divisible by 6, but bdk is using the rust-bip39 crate which only allows word counts that are divisible by 6. See:
Describe the bug
This issue is a reminder so we don't forget to fix this.
The
WordCount
enum allows users to pick word counts that aren't divisible by 6, butbdk
is using therust-bip39
crate which only allows word counts that are divisible by 6. See:https://docs.rs/bip39/1.0.1/src/bip39/lib.rs.html#245-261
To Reproduce
Create a
Mnemonic
withWordCount
of 15 words and an error is returned.Expected behavior
When using the
WordCount
enum all the variants should be valid.Build environment
Additional context
The next version of
rust-bip39
should fix this issue with rust-bitcoin/rust-bip39#18.This is the PR where bdk switched to using
rust-bip39
bitcoindevkit/bdk#462See also BIP-39.
The text was updated successfully, but these errors were encountered: