funga

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

commit b4bd0c248f58370693ecc59b85c1200272ecccf1
parent 468dd65462eecfea42fcc4a576511ffb47134b9e
Author: nolash <dev@holbrook.no>
Date:   Thu, 14 Jan 2021 11:11:25 +0100

Remove rouge debug loglevel specifier

Diffstat:
Mcrypto_dev_signer/keystore/postgres.py | 1-
Mcrypto_dev_signer/runnable/signer.py | 3++-
Msetup.py | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/crypto_dev_signer/keystore/postgres.py b/crypto_dev_signer/keystore/postgres.py @@ -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__) diff --git a/crypto_dev_signer/runnable/signer.py b/crypto_dev_signer/runnable/signer.py @@ -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 = { diff --git a/setup.py b/setup.py @@ -24,7 +24,7 @@ f.close() setup( name="crypto-dev-signer", - version="0.4.13b8", + version="0.4.13b10", description="A signer and keystore daemon and library for cryptocurrency software development", author="Louis Holbrook", author_email="dev@holbrook.no",