funga

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

commit 6cbaa22a7d64283522c9a545dd541ad750172cc2
parent 729ada00e2b15f0f0907b0a0f3e5e344b5236c8c
Author: nolash <dev@holbrook.no>
Date:   Fri, 23 Apr 2021 22:02:47 +0200

Correct jsonrpc version json key

Diffstat:
Mcrypto_dev_signer/runnable/signer.py | 4++--
Msetup.py | 2+-
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/crypto_dev_signer/runnable/signer.py b/crypto_dev_signer/runnable/signer.py @@ -143,7 +143,7 @@ methods = { def jsonrpc_error(rpc_id, err): return { - 'json-rpc': '2.0', + 'jsonrpc': '2.0', 'id': rpc_id, 'error': { 'code': err.CODE, @@ -154,7 +154,7 @@ def jsonrpc_error(rpc_id, err): def jsonrpc_ok(rpc_id, response): return { - 'json-rpc': '2.0', + 'jsonrpc': '2.0', 'id': rpc_id, 'result': response, } diff --git a/setup.py b/setup.py @@ -33,7 +33,7 @@ f.close() setup( name="crypto-dev-signer", - version="0.4.14b2", + version="0.4.14b3", description="A signer and keystore daemon and library for cryptocurrency software development", author="Louis Holbrook", author_email="dev@holbrook.no",