Skip to content

Commit 28de5a1

Browse files
committed
Fix: BIP44 HD CSV format include issue
1 parent 5f1933a commit 28de5a1

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

hdwallet/cli/dumps.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,9 @@ def dumps(**kwargs) -> None:
233233
elif hd_name == BIP32HD.name():
234234
_include: str = "at:path,addresses:p2pkh,public_key,wif"
235235
elif hd_name in [
236-
BIP44HD.name(), BIP49HD.name(), BIP84HD.name(), BIP86HD.name()
236+
BIP44HD.name(), BIP49HD.name(), BIP84HD.name(), BIP86HD.name(), BIP141HD.name()
237237
]:
238238
_include: str = "at:path,address,public_key,wif"
239-
elif hd_name == BIP141HD.name():
240-
_include: str = f"at:path,addresses:p2wpkh,public_key,wif"
241239
elif hd_name == CardanoHD.name():
242240
_include: str = "at:path,address,public_key,private_key"
243241
elif hd_name in [

0 commit comments

Comments
 (0)