mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
fix address_from_perivate_key
This commit is contained in:
parent
de0876af7a
commit
5514d3bd74
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ def public_key_from_private_key(sec):
|
|||
|
||||
def address_from_private_key(sec):
|
||||
public_key = public_key_from_private_key(sec)
|
||||
address = public_key_to_bc_address(public_key)
|
||||
address = public_key_to_bc_address(public_key.decode('hex'))
|
||||
return address
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue