From e562b0b5653568740f5933ad98e51044b863e4e4 Mon Sep 17 00:00:00 2001 From: fr3aker Date: Sat, 11 Feb 2017 19:57:46 +0100 Subject: [PATCH] python3: fix bad type in make_seed --- lib/mnemonic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mnemonic.py b/lib/mnemonic.py index a3443dd2..c0ca4a0e 100644 --- a/lib/mnemonic.py +++ b/lib/mnemonic.py @@ -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)