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.
2 parents a9d29ee + 3c48a36 commit 0e7883dCopy full SHA for 0e7883d
slip39/recovery/main.py
@@ -81,7 +81,7 @@ def main( argv=None ):
81
82
# If BIP-39 recovery designated, only a single mnemonic is allowed:
83
secret = None
84
- algo = "SLIP-39" if args.bip39 is None else "BIP-39"
+ algo = "BIP-39" if args.bip39 else "SLIP-39"
85
mnemonics = args.mnemonic or []
86
if args.bip39:
87
# Recover actual BIP-39 Mnemonic. By default, outputs the generated 512-bit wallet Seed.
slip39/version.py
@@ -1,2 +1,2 @@
1
-__version_info__ = ( 9, 0, 3 )
+__version_info__ = ( 9, 0, 4 )
2
__version__ = '.'.join( map( str, __version_info__ ))
0 commit comments