Remove rouge debug loglevel specifier

This commit is contained in:
nolash
2021-01-14 11:11:25 +01:00
parent 468dd65462
commit b4bd0c248f
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 crypto_dev_signer.error import UnknownAccountError
logging.basicConfig(level=logging.DEBUG)
logg = logging.getLogger(__file__)

View File

@@ -99,7 +99,8 @@ def personal_new_account(p):
def personal_sign_transaction(p):
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])
raw_signed_tx = t.rlp_serialize()
o = {