Skip to content

Commit b0731e4

Browse files
committed
feat(wallet): Set mnemonic bits default to 128 bits / 12 words
to be more compatible with most wallets out there
1 parent 99f0e71 commit b0731e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hdchain.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class CHDChain
4343

4444
public:
4545
/** Default for -mnemonicbits */
46-
static constexpr int DEFAULT_MNEMONIC_BITS = 256; // 256 bits == 24 words
46+
static constexpr int DEFAULT_MNEMONIC_BITS = 128; // 128 bits == 12 words
4747

4848
CHDChain() = default;
4949
CHDChain(const CHDChain& other) :

0 commit comments

Comments
 (0)