From d89d021955137185f991aa1b3c63f41ca1ddf18c Mon Sep 17 00:00:00 2001
From: Roman Khlopkov <roman.khlopkov@demlabs.net>
Date: Wed, 5 Jul 2023 16:06:40 +0300
Subject: [PATCH] [*] Universal json-c library

---
 CMakeLists.txt           | 2 +-
 cellframe-sdk            | 2 +-
 dap-sdk                  | 2 +-
 python-cellframe         | 2 +-
 sources/main_node_tool.c | 2 +-
 version.mk               | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5c00ab502..b8998a0a3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -213,7 +213,7 @@ if(WIN32)
     target_link_libraries(${NODE_TOOL_TARGET} cellframe-sdk )
     set_property(TARGET ${NODE_TOOL_TARGET} APPEND_STRING PROPERTY LINK_FLAGS "-mconsole")
 
-    target_link_libraries(${PROJECT_NAME} cellframe-sdk json-c )
+    target_link_libraries(${PROJECT_NAME} cellframe-sdk dap_json-c )
     set_property(TARGET ${PROJECT_NAME} APPEND_STRING PROPERTY LINK_FLAGS "-mwindows")
 
 #dap_chain_net_srv_vpn dap_server_http_db_auth
diff --git a/cellframe-sdk b/cellframe-sdk
index 451c26e5e..fa5d1e36b 160000
--- a/cellframe-sdk
+++ b/cellframe-sdk
@@ -1 +1 @@
-Subproject commit 451c26e5ef5744c04a8cb6d8ab2ea10d4ca519c3
+Subproject commit fa5d1e36bbe049022981f4e7421947b6299ef585
diff --git a/dap-sdk b/dap-sdk
index ad7b842d9..7ba316b74 160000
--- a/dap-sdk
+++ b/dap-sdk
@@ -1 +1 @@
-Subproject commit ad7b842d9ef33155311e8f2e5691df082b72d0b7
+Subproject commit 7ba316b74dfb8f1f9b21a9583f0f942ae2d16b60
diff --git a/python-cellframe b/python-cellframe
index 3725d7848..c071ef0db 160000
--- a/python-cellframe
+++ b/python-cellframe
@@ -1 +1 @@
-Subproject commit 3725d7848843b77ccca37599e04d05aaa435d22e
+Subproject commit c071ef0db6f70f2875d0decbb32bd84d41fe8cc9
diff --git a/sources/main_node_tool.c b/sources/main_node_tool.c
index 241736e81..9c8a7deb9 100644
--- a/sources/main_node_tool.c
+++ b/sources/main_node_tool.c
@@ -228,7 +228,7 @@ static int s_wallet_create(int argc, const char **argv) {
 
     l_wallet = dap_chain_wallet_create(l_wallet_name, s_system_wallet_dir, l_sig_type, l_pass_str);
 
-    return 0;
+    return l_wallet ? 0 : -1;
 }
 
 static int s_wallet_create_from(int argc, const char **argv) {
diff --git a/version.mk b/version.mk
index 79a19b182..c6dede091 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 VERSION_MAJOR=5
 VERSION_MINOR=2
-VERSION_PATCH=196
+VERSION_PATCH=197
-- 
GitLab