Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dapcash-node
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
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
DapCash
dapcash-node
Commits
5f8c96e5
Commit
5f8c96e5
authored
4 years ago
by
Dmitriy A. Gerasimov
Browse files
Options
Downloads
Patches
Plain Diff
[!] Fixed falls on some events
parent
b7b4a96b
No related branches found
No related tags found
No related merge requests found
Pipeline
#6838
failed with stages
in 5 minutes and 42 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+2
-2
2 additions, 2 deletions
CMakeLists.txt
cellframe-sdk
+1
-1
1 addition, 1 deletion
cellframe-sdk
prod_build
+1
-1
1 addition, 1 deletion
prod_build
sources/main.c
+1
-1
1 addition, 1 deletion
sources/main.c
with
5 additions
and
5 deletions
CMakeLists.txt
+
2
−
2
View file @
5f8c96e5
...
...
@@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11)
SET
(
CPACK_PACKAGE_NAME
"
${
PROJECT_NAME
}
"
)
SET
(
CPACK_PACKAGE_VERSION_MAJOR 4
)
SET
(
CPACK_PACKAGE_VERSION_MINOR 1
)
SET
(
CPACK_PACKAGE_VERSION_PATCH 7
8
)
SET
(
CPACK_PACKAGE_VERSION_PATCH 7
9
)
#
# init CellFrame SDK
...
...
@@ -46,7 +46,7 @@ if(UNIX)
SET
(
CPACK_DEBIAN_PACKAGE_DESCRIPTION_SUMMARY
"DapCash Node software https://dapcash.org"
)
SET
(
CPACK_DEBIAN_PACKAGE_DESCRIPTION
"DapCash Node"
)
SET
(
CPACK_DEBIAN_PACKAGE_SECTION
"extra"
)
SET
(
CPACK_DEBIAN_PACKAGE_DEPENDS
"debconf (>=1.5), dpkg (>=1.17), bash (>=4), debconf-utils, dconf-cli, less, pv, psmisc"
)
SET
(
CPACK_DEBIAN_PACKAGE_DEPENDS
"debconf (>=1.5), dpkg (>=1.17), bash (>=4), debconf-utils, dconf-cli, less, pv, psmisc
, logrotate
"
)
SET
(
CPACK_DEBIAN_PACKAGE_SHLIBDEPS ON
)
SET
(
CPACK_DEBIAN_PACKAGE_CONTROL_EXTRA
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/debian/postinst;
${
CMAKE_CURRENT_SOURCE_DIR
}
/debian/postrm;
${
CMAKE_CURRENT_SOURCE_DIR
}
/debian/templates;
${
CMAKE_CURRENT_SOURCE_DIR
}
/debian/config;"
)
...
...
This diff is collapsed.
Click to expand it.
cellframe-sdk
@
5f8c4516
Compare
3ae6b91c
...
5f8c4516
Subproject commit
3ae6b91c4139f5062e9eb8c36284d853a5a27e6a
Subproject commit
5f8c4516064312dd90d055d715ba0ed4f737121b
This diff is collapsed.
Click to expand it.
prod_build
@
044bf5a9
Compare
0edc833c
...
044bf5a9
Subproject commit 0
edc833cf20e9acc35c1b1455eb4d9276f73f864
Subproject commit 0
44bf5a9bf2623d2556978cc4fb5110b32549e5a
This diff is collapsed.
Click to expand it.
sources/main.c
+
1
−
1
View file @
5f8c96e5
...
...
@@ -421,7 +421,7 @@ int main( int argc, const char **argv )
dap_stream_add_proc_http
(
DAP_HTTP
(
l_server
),
STREAM_URL
);
dap_stream_ctl_add_proc
(
DAP_HTTP
(
l_server
),
STREAM_CTL_URL
);
const
char
*
str_start_mempool
=
dap_config_get_item_str
(
g_config
,
"mempool"
,
"accept"
);
const
char
*
str_start_mempool
=
dap_config_get_item_str
(
g_config
,
"mempool"
,
"accept"
);
if
(
str_start_mempool
&&
!
strcmp
(
str_start_mempool
,
"true"
))
{
dap_chain_mempool_add_proc
(
DAP_HTTP
(
l_server
),
MEMPOOL_URL
);
}
...
...
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