funga

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

commit 27374e2ad4b775141e576f9e440bf946eb078f17
parent 1af7bdaacd3cefef372acb05b2988dd70e765021
Author: nolash <dev@holbrook.no>
Date:   Sun,  7 Feb 2021 16:23:15 +0100

Typo in zero check

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 @@ -43,7 +43,7 @@ class ReferenceSigner(Signer): if tx.r[0] == 0: tx.r = tx.r[1:] if tx.s[0] == 0: - tx.r = tx.s[1:] + tx.s = tx.s[1:] return z diff --git a/setup.py b/setup.py @@ -24,7 +24,7 @@ f.close() setup( name="crypto-dev-signer", - version="0.4.13rc1", + version="0.4.13rc2", description="A signer and keystore daemon and library for cryptocurrency software development", author="Louis Holbrook", author_email="dev@holbrook.no",