Add missing symbol in signer

This commit is contained in:
nolash 2021-09-15 20:40:13 +02:00
parent b59f52d77d
commit 345426c9f0
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 5 additions and 1 deletions

View File

@ -47,6 +47,10 @@ class ReferenceSigner(Signer):
return tx.rlp_serialize()
def sign_transaction_to_wire(self, tx, password=None):
return sign_transaction_to_wire(tx, password=password)
def sign_ethereum_message(self, address, message, password=None):
#k = keys.PrivateKey(self.keyGetter.get(address, password))

View File

@ -33,7 +33,7 @@ f.close()
setup(
name="crypto-dev-signer",
version="0.4.15a4",
version="0.4.15a5",
description="A signer and keystore daemon and library for cryptocurrency software development",
author="Louis Holbrook",
author_email="dev@holbrook.no",