funga

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

commit 345426c9f0b97ce7706623d0925c9da0c0e4b5cc
parent b59f52d77d182796553689f210dc093479b88138
Author: nolash <dev@holbrook.no>
Date:   Wed, 15 Sep 2021 20:40:13 +0200

Add missing symbol in signer

Diffstat:
Mcrypto_dev_signer/eth/signer/defaultsigner.py | 4++++
Msetup.py | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/crypto_dev_signer/eth/signer/defaultsigner.py b/crypto_dev_signer/eth/signer/defaultsigner.py @@ -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)) diff --git a/setup.py b/setup.py @@ -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",