Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-server-http-db-auth
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
libdap-server-http-db-auth
Compare revisions
bdab475c9dfe0ad876cd642a798e1b0b54ca314e to 57990d82d6a26e305a7c6fa29cb7fa9d9f532ca9
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/libdap-server-http-db-auth
Select target project
No results found
57990d82d6a26e305a7c6fa29cb7fa9d9f532ca9
Select Git revision
Branches
bugs-2706
bugs-2791
feature-2236
features-4171
master
Swap
Target
cellframe/libdap-server-http-db-auth
Select target project
cellframe/libdap-server-http-db-auth
1 result
bdab475c9dfe0ad876cd642a798e1b0b54ca314e
Select Git revision
Branches
bugs-2706
bugs-2791
feature-2236
features-4171
master
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
changed getting of wallet path
· 57990d82
alexander.lysikov
authored
5 years ago
57990d82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dap_server_http_db_auth.c
+1
-1
1 addition, 1 deletion
dap_server_http_db_auth.c
with
1 addition
and
1 deletion
dap_server_http_db_auth.c
View file @
57990d82
...
...
@@ -83,7 +83,7 @@ char* dap_server_http_db_auth_create_service_key(const char *a_wallet_name)
*/
char
*
dap_server_http_db_auth_create_key_hash
(
const
char
*
a_wallet_name
,
char
**
a_addr_base58
)
{
const
char
*
c_wallets_path
=
dap_c
onfig_get_item_str
(
g_config
,
"general"
,
"wallets_path"
);
const
char
*
c_wallets_path
=
dap_c
hain_wallet_get_path
(
g_config
);
dap_chain_wallet_t
*
l_wallet
=
dap_chain_wallet_open
(
a_wallet_name
,
c_wallets_path
);
if
(
!
l_wallet
)
return
NULL
;
...
...
This diff is collapsed.
Click to expand it.