Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
celllframe-node
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Code
Merge requests
14
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cellframe
celllframe-node
Commits
610cc84c
Commit
610cc84c
authored
6 years ago
by
Dmitriy A. Gerasimov
Browse files
Options
Downloads
Patches
Plain Diff
[+] Curl depends for travis
[+] new commands for node tool
parent
95b23008
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.travis.yml
+2
-0
2 additions, 0 deletions
.travis.yml
libdap-chain-crypto
+1
-1
1 addition, 1 deletion
libdap-chain-crypto
sources/main_node_tool.c
+1
-1
1 addition, 1 deletion
sources/main_node_tool.c
with
4 additions
and
2 deletions
.travis.yml
+
2
−
0
View file @
610cc84c
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
libdap-chain-crypto
@
44571987
Compare
284cfc57
...
44571987
Subproject commit
284cfc573d7f183b031aa8bd7c2995b4ee53bba6
Subproject commit
44571987e552919312a12d07b0d88ccbd1ef3262
This diff is collapsed.
Click to expand it.
sources/main_node_tool.c
+
1
−
1
View file @
610cc84c
...
@@ -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
]);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment