1
0
This commit is contained in:
ThomasV
2015-06-11 08:56:07 +02:00
parent bf50bc45ef
commit 16344b43af
2 changed files with 5 additions and 7 deletions

View File

@@ -131,7 +131,7 @@ class Commands:
def make_seed(self, nbits=128, entropy=1, language=None):
"""Create a seed"""
from mnemonic import Mnemonic
s = Mnemonic(language).make_seed(nbits, custom_entropy=custom_entropy)
s = Mnemonic(language).make_seed(nbits, custom_entropy=entropy)
return s.encode('utf8')
@command('')