funga

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

commit 54baa5fab17e9cfcd6816cd2f88c68b8635ba529
parent 6cbaa22a7d64283522c9a545dd541ad750172cc2
Author: nolash <dev@holbrook.no>
Date:   Sun,  2 May 2021 18:06:27 +0200

Change path

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

diff --git a/crypto_dev_signer/runnable/signer.py b/crypto_dev_signer/runnable/signer.py @@ -69,7 +69,7 @@ dsn = 'postgresql://{}:{}@{}:{}/{}'.format( ) logg.info('using dsn {}'.format(dsn)) -logg.info('using socket {}'.format(socket_path)) +logg.info('using socket {}'.format(config.get('SIGNER_SOCKET_PATH'))) re_http = r'^http' re_unix = r'^ipc' diff --git a/setup.py b/setup.py @@ -63,5 +63,5 @@ setup( 'eth-keyfile=crypto_dev_signer.runnable.keyfile:main', ], }, - url='https://gitlab.com/nolash/crypto-dev-signer', + url='https://gitlab.com/chaintools/crypto-dev-signer', )