diff --git a/bigchaindb/tendermint/event_stream.py b/bigchaindb/tendermint/event_stream.py index 3c989f5d..2191924b 100644 --- a/bigchaindb/tendermint/event_stream.py +++ b/bigchaindb/tendermint/event_stream.py @@ -13,7 +13,7 @@ from bigchaindb.tendermint.utils import decode_transaction_base64 HOST = getenv('BIGCHAINDB_TENDERMINT_HOST', 'localhost') PORT = int(getenv('BIGCHAINDB_TENDERMINT_PORT', 46657)) -URL = 'ws://{HOST}:{PORT}/websocket' +URL = f'ws://{HOST}:{PORT}/websocket' logger = logging.getLogger(__name__)