funga

Signer and keystore daemon and library for cryptocurrency software development
Log | Files | Refs | README | LICENSE

commit 12c5692367ce1a0a6576d55cea775a0594311d32
parent a0d1b7dec66f31f015166871aac7762be58d0749
Author: nolash <dev@holbrook.no>
Date:   Wed,  9 Jun 2021 16:21:56 +0200

Remove secret key log output

Diffstat:
Mcrypto_dev_signer/encoding.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto_dev_signer/encoding.py b/crypto_dev_signer/encoding.py @@ -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)