Remove secret key log output

This commit is contained in:
nolash 2021-06-09 16:21:56 +02:00
parent a0d1b7dec6
commit 12c5692367
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ def public_key_to_address(pubk, result_format='hex'):
def private_key_to_address(pk, result_format='hex'):
pubk = coincurve.PublicKey.from_secret(pk.secret)
logg.debug('secret {} '.format(pk.secret.hex()))
#logg.debug('secret {} '.format(pk.secret.hex()))
return public_key_to_address(pubk, result_format)