From 54baa5fab17e9cfcd6816cd2f88c68b8635ba529 Mon Sep 17 00:00:00 2001 From: nolash Date: Sun, 2 May 2021 18:06:27 +0200 Subject: [PATCH] Change path --- crypto_dev_signer/runnable/signer.py | 2 +- setup.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 index c35e042..0f2d8ba 100755 --- 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 index 55401c0..06246f7 100644 --- 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', )