mirror of
https://github.com/planetmint/planetmint.git
synced 2025-11-24 06:25:45 +00:00
fixed initialization bug
Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
parent
40b401f9df
commit
c4370e3d00
@ -17,8 +17,8 @@ logger = logging.getLogger(__name__)
|
||||
class TarantoolDBConnection(DBConnection):
|
||||
def __init__(
|
||||
self,
|
||||
host: str = "localhost",
|
||||
port: int = 3303,
|
||||
host: str = None,
|
||||
port: int = None,
|
||||
login: str = None,
|
||||
password: str = None,
|
||||
**kwargs,
|
||||
|
||||
@ -95,7 +95,7 @@ class Config(metaclass=Singleton):
|
||||
"tendermint": {
|
||||
"host": "localhost",
|
||||
"port": 26657,
|
||||
"version": "v0.31.5", # look for __tm_supported_versions__
|
||||
"version": "v0.34.15", # look for __tm_supported_versions__
|
||||
},
|
||||
"database": self.__private_database_map,
|
||||
"log": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user