Skip to content
Snippets Groups Projects

fixed wallet_get_path() for unix-like systems

Merged alexander.lysikov requested to merge feature-2854 into master
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -113,8 +113,9 @@ const char* dap_chain_wallet_get_path(dap_config_t * a_config)
#ifdef _WIN32
memcpy(l_wallets_path, s_sys_dir_path, l_sys_dir_path_len);
#endif
dap_sprintf(l_wallets_path + g_sys_dir_path_len, "%s", dap_config_get_item_str(g_config, "resources", "wallets_path"));
#endif
dap_sprintf(l_wallets_path, "%s", dap_config_get_item_str(g_config, "resources", "wallets_path"));
RET:
return l_wallets_path;
}
Loading