Bump version

This commit is contained in:
nolash 2021-03-17 17:09:42 +01:00
parent b46ed3a9e6
commit e973664490
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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",