Skip to content
Snippets Groups Projects
Commit 20b72087 authored by dmitriy.gerasimov's avatar dmitriy.gerasimov
Browse files

Merge branch 'feature-2854' into 'master'

fixed wallet_get_path() for unix-like systems

See merge request !10
parents 881cadba 2d557563
No related branches found
No related tags found
1 merge request!10fixed wallet_get_path() for unix-like systems
......@@ -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;
}
......
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