Remove rouge debug loglevel specifier
This commit is contained in:
parent
468dd65462
commit
b4bd0c248f
@ -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__)
|
||||||
|
|
||||||
|
|
||||||
|
@ -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 = {
|
||||||
|
2
setup.py
2
setup.py
@ -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",
|
||||||
|
Loading…
Reference in New Issue
Block a user