Skip to content
Snippets Groups Projects
Commit 7ca39957 authored by Dmitriy A. Gerasimov's avatar Dmitriy A. Gerasimov
Browse files

[*] Some small changes

parent 55fb4c90
No related branches found
No related tags found
No related merge requests found
...@@ -34,3 +34,7 @@ ...@@ -34,3 +34,7 @@
path = cellframe-sdk-python/libdap-client-python path = cellframe-sdk-python/libdap-client-python
url = https://gitlab.demlabs.net/cellframe/libdap-client-python.git/ url = https://gitlab.demlabs.net/cellframe/libdap-client-python.git/
branch = master branch = master
[submodule "cellframe-sdk-python/libdap-chain-cli-python"]
path = cellframe-sdk-python/libdap-chain-cli-python
url = https://gitlab.demlabs.net/cellframe/libdap-chain-cli-python.git
branch = master
Subproject commit 9ab0cbbcabd0955d216e1254da00befe3a82c96a Subproject commit 00449e0dfd5acba4f22f9e1580794a83ac733c78
Subproject commit 25a90c2c791fbbf1ad20dc4b9a55147ea78cf2ab
...@@ -9,12 +9,19 @@ json_string = """{ ...@@ -9,12 +9,19 @@ json_string = """{
"modules": ["Crypto", "ServerCore", "Http", "HttpFolder", "GlobalDB", "Client", "HttpClientSimple", "Mempool", "modules": ["Crypto", "ServerCore", "Http", "HttpFolder", "GlobalDB", "Client", "HttpClientSimple", "Mempool",
"Chain", "Wallet", "ChainCSDag", "ChainCSDagPoa", "ChainCSDagPos", "GDB", "Net", "ChainNetSrv", "EncHttp", "Chain", "Wallet", "ChainCSDag", "ChainCSDagPoa", "ChainCSDagPos", "GDB", "Net", "ChainNetSrv", "EncHttp",
"Stream", "StreamCtl", "HttpSimple", "StreamChChain", "StreamChChainNet", "StreamChChainNetSrv"], "Stream", "StreamCtl", "HttpSimple", "StreamChChain", "StreamChChainNet", "StreamChChainNetSrv"],
"DAP": { "DAP": {
"config_dir": \""""+tmp_dir+"""\", "config_dir": \""""+tmp_dir+"""\",
"log_level": "L_DEBUG", "log_level": "L_DEBUG",
"application_name": \""""+app_name+"""\", "application_name": \""""+app_name+"""\",
"file_name_log": \""""+app_name+""".text\" "file_name_log": \""""+app_name+""".text\"
}, },
"Stream" : {
"DebugDumpStreamHeaders": false
},
"ServerCore" : {
"thread_cnt": 0,
"conn": 0
}
"Configuration" : { "Configuration" : {
"general": { "general": {
"debug_mode": false, "debug_mode": false,
...@@ -22,13 +29,10 @@ json_string = """{ ...@@ -22,13 +29,10 @@ json_string = """{
"wallets_default": "default" "wallets_default": "default"
}, },
"server": { "server": {
"enabled": false, "enabled": true,
"listen_address": "0.0.0.0", "listen_address": "0.0.0.0",
"listen_port_tcp": 8079 "listen_port_tcp": 8079
}, },
"mempool": {
"accept": false
},
"conserver": { "conserver": {
"enabled": true, "enabled": true,
"listen_unix_socket_path": \""""+tmp_dir+"""/node_cli\" "listen_unix_socket_path": \""""+tmp_dir+"""/node_cli\"
...@@ -46,7 +50,7 @@ json_string = """{ ...@@ -46,7 +50,7 @@ json_string = """{
"devnet": { "devnet": {
"general":{ "general":{
"id": "0xFF00000000000003", "id": "0xFF00000000000003",
"name": "devnet", "name": "mychains-dev",
"type": "development", "type": "development",
"node-role": "root", "node-role": "root",
"gdb_groups_prefix": "devnet" "gdb_groups_prefix": "devnet"
...@@ -69,13 +73,6 @@ json_string = """{ ...@@ -69,13 +73,6 @@ json_string = """{
} }
} }
}, },
"Stream" : {
"DebugDumpStreamHeaders": false
},
"ServerCore" : {
"thread_cnt": 0,
"conn": 0
}
}""" }"""
CellFrame.init(json_string) CellFrame.init(json_string)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment