funga

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

commit e973664490150b64bba1fb41d58857b92cb12b0c
parent b46ed3a9e6407b2b6f345596e4add609340c147f
Author: nolash <dev@holbrook.no>
Date:   Wed, 17 Mar 2021 17:09:42 +0100

Bump version

Diffstat:
Mcrypto_dev_signer/eth/signer/defaultsigner.py | 2+-
Mrequirements.txt | 2+-
Msetup.py | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/crypto_dev_signer/eth/signer/defaultsigner.py b/crypto_dev_signer/eth/signer/defaultsigner.py @@ -84,5 +84,5 @@ class ReferenceSigner(Signer): def sign(self, address, message, password=None): pk = coincurve.PrivateKey(secret=self.keyGetter.get(address, password)) - z = pk.sign(hasher=None, message=message) + z = pk.sign_recoverable(hasher=None, message=message) return z diff --git a/requirements.txt b/requirements.txt @@ -1,5 +1,5 @@ psycopg2==2.8.6 -#cryptography==3.2.1 +cryptography==3.2.1 pysha3==1.0.2 simple-rlp==0.1.2 json-rpc==1.13.0 diff --git a/setup.py b/setup.py @@ -24,7 +24,7 @@ f.close() setup( name="crypto-dev-signer", - version="0.4.13rc6", + version="0.4.14a1", description="A signer and keystore daemon and library for cryptocurrency software development", author="Louis Holbrook", author_email="dev@holbrook.no",