funga

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

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

Symbol typo

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

diff --git a/crypto_dev_signer/eth/signer/defaultsigner.py b/crypto_dev_signer/eth/signer/defaultsigner.py @@ -48,7 +48,7 @@ class ReferenceSigner(Signer): def sign_transaction_to_wire(self, tx, password=None): - return sign_transaction_to_wire(tx, password=password) + return sign_transaction_to_rlp(tx, password=password) def sign_ethereum_message(self, address, message, password=None): diff --git a/setup.py b/setup.py @@ -33,7 +33,7 @@ f.close() setup( name="crypto-dev-signer", - version="0.4.15a5", + version="0.4.15a6", description="A signer and keystore daemon and library for cryptocurrency software development", author="Louis Holbrook", author_email="dev@holbrook.no",