python3: fix bad type in make_seed

This commit is contained in:
fr3aker 2017-02-11 19:57:46 +01:00 committed by ThomasV
parent 8a15581d8e
commit e562b0b565
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ class Mnemonic(object):
prefix = version.seed_prefix(seed_type)
# increase num_bits in order to obtain a uniform distibution for the last word
bpw = math.log(len(self.wordlist), 2)
num_bits = int(math.ceil(num_bits/bpw)) * bpw
num_bits = int(math.ceil(num_bits/bpw) * bpw)
# handle custom entropy; make sure we add at least 16 bits
n_custom = int(math.ceil(math.log(custom_entropy, 2)))
n = max(16, num_bits - n_custom)