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', )