Browse Source
Merge pull request #4725 from joren485/unreachable_return
Remove unreachable return statement
3.3.3.1
ghost43
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
1 deletions
-
electrum/rsakey.py
|
@ -125,7 +125,6 @@ def numBits(n): |
|
|
'8':4, '9':4, 'a':4, 'b':4, |
|
|
'8':4, '9':4, 'a':4, 'b':4, |
|
|
'c':4, 'd':4, 'e':4, 'f':4, |
|
|
'c':4, 'd':4, 'e':4, 'f':4, |
|
|
}[s[0]] |
|
|
}[s[0]] |
|
|
return int(math.floor(math.log(n, 2))+1) |
|
|
|
|
|
|
|
|
|
|
|
def numBytes(n): |
|
|
def numBytes(n): |
|
|
if n==0: |
|
|
if n==0: |
|
|