tMerge pull request #4725 from joren485/unreachable_return - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit 924ee1a6726ad3e8a3fb5641712c7b0cf9e2b398
 (DIR) parent adc91eb75efa21de4d4a59f262ce111017694689
 (HTM) Author: ghost43 <somber.night@protonmail.com>
       Date:   Wed, 19 Sep 2018 13:09:49 +0200
       
       Merge pull request #4725 from joren485/unreachable_return
       
       Remove unreachable return statement
       Diffstat:
         M electrum/rsakey.py                  |       1 -
       
       1 file changed, 0 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/electrum/rsakey.py b/electrum/rsakey.py
       t@@ -125,7 +125,6 @@ def numBits(n):
             '8':4, '9':4, 'a':4, 'b':4,
             'c':4, 'd':4, 'e':4, 'f':4,
             }[s[0]]
       -    return int(math.floor(math.log(n, 2))+1)
        
        def numBytes(n):
            if n==0: