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

[+] Curl depends for travis

[+] new commands for node tool
parent 95b23008
No related branches found
No related tags found
No related merge requests found
...@@ -27,6 +27,8 @@ addons: ...@@ -27,6 +27,8 @@ addons:
- libmagic-dev - libmagic-dev
- libldb-dev - libldb-dev
- libtevent-dev - libtevent-dev
- libcurl4-gnutls-dev
......
Subproject commit 284cfc573d7f183b031aa8bd7c2995b4ee53bba6 Subproject commit 44571987e552919312a12d07b0d88ccbd1ef3262
...@@ -133,7 +133,7 @@ int main(int argc, const char * argv[]) ...@@ -133,7 +133,7 @@ int main(int argc, const char * argv[])
size_t l_wallet_path_size = strlen(l_wallet_name)+strlen(SYSTEM_WALLET_DIR)+10; size_t l_wallet_path_size = strlen(l_wallet_name)+strlen(SYSTEM_WALLET_DIR)+10;
char * l_wallet_path = DAP_NEW_Z_SIZE(char,l_wallet_path_size); char * l_wallet_path = DAP_NEW_Z_SIZE(char,l_wallet_path_size);
snprintf(l_wallet_path,l_wallet_path_size,"%s/%s.dwallet",SYSTEM_WALLET_DIR,l_wallet_name); snprintf(l_wallet_path,l_wallet_path_size,"%s/%s.dwallet",SYSTEM_WALLET_DIR,l_wallet_name);
l_wallet = dap_chain_wallet_create(l_wallet_name,l_wallet_path,l_network_id,l_sig_type); l_wallet = dap_chain_wallet_create(l_wallet_name,SYSTEM_WALLET_DIR,l_network_id,l_sig_type);
DAP_DELETE (l_wallet_path); DAP_DELETE (l_wallet_path);
}else { }else {
log_it(L_CRITICAL,"Wrong signature '%s'",argv[4]); log_it(L_CRITICAL,"Wrong signature '%s'",argv[4]);
......
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