Remove rouge debug loglevel specifier

This commit is contained in:
nolash 2021-01-14 11:11:25 +01:00
parent 468dd65462
commit b4bd0c248f
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,6 @@ from crypto_dev_signer.common import strip_hex_prefix
from . import keyapi from . import keyapi
from crypto_dev_signer.error import UnknownAccountError from crypto_dev_signer.error import UnknownAccountError
logging.basicConfig(level=logging.DEBUG)
logg = logging.getLogger(__file__) logg = logging.getLogger(__file__)

View File

@ -99,7 +99,8 @@ def personal_new_account(p):
def personal_sign_transaction(p): def personal_sign_transaction(p):
logg.debug('got {} to sign'.format(p[0])) logg.debug('got {} to sign'.format(p[0]))
t = EIP155Transaction(p[0], p[0]['nonce'], 8995) #t = EIP155Transaction(p[0], p[0]['nonce'], 8995)
t = EIP155Transaction(p[0], p[0]['nonce'], int(p[0]['chainId']))
z = signer.signTransaction(t, p[1]) z = signer.signTransaction(t, p[1])
raw_signed_tx = t.rlp_serialize() raw_signed_tx = t.rlp_serialize()
o = { o = {

View File

@ -24,7 +24,7 @@ f.close()
setup( setup(
name="crypto-dev-signer", name="crypto-dev-signer",
version="0.4.13b8", version="0.4.13b10",
description="A signer and keystore daemon and library for cryptocurrency software development", description="A signer and keystore daemon and library for cryptocurrency software development",
author="Louis Holbrook", author="Louis Holbrook",
author_email="dev@holbrook.no", author_email="dev@holbrook.no",