From 12c5692367ce1a0a6576d55cea775a0594311d32 Mon Sep 17 00:00:00 2001 From: nolash Date: Wed, 9 Jun 2021 16:21:56 +0200 Subject: [PATCH] Remove secret key log output --- crypto_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 index 4166f03..ded34da 100644 --- 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)