Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sgxwallet
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董子豪
sgxwallet
Commits
b128bca4
Unverified
Commit
b128bca4
authored
Jun 16, 2021
by
Oleh Nikolaiev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SKALE-3951 cleanup
parent
e0482d51
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
9 deletions
+0
-9
sgxwall.cpp
sgxwall.cpp
+0
-4
testw.py
testw.py
+0
-1
ZMQServer.cpp
zmq_src/ZMQServer.cpp
+0
-4
No files found.
sgxwall.cpp
View file @
b128bca4
...
...
@@ -182,7 +182,6 @@ int main(int argc, char *argv[]) {
initAll
(
enclaveLogLevel
,
checkClientCertOption
,
checkClientCertOption
,
autoSignClientCertOption
,
generateTestKeys
);
cerr
<<
"Completed initAll."
<<
endl
;
//check if test keys already exist
string
TEST_KEYS_4_NODE
=
"sgx_data/4node.json"
;
...
...
@@ -194,7 +193,6 @@ int main(int argc, char *argv[]) {
cerr
<<
"Found test keys."
<<
endl
;
}
if
(
generateTestKeys
&&
!
keysExist
&&
!
ExitHandler
::
shouldExit
())
{
cerr
<<
"Generating test keys ..."
<<
endl
;
...
...
@@ -221,8 +219,6 @@ int main(int argc, char *argv[]) {
cerr
<<
"Successfully completed generating test keys into sgx_data"
<<
endl
;
}
while
(
!
ExitHandler
::
shouldExit
()
)
{
sleep
(
10
);
}
...
...
testw.py
View file @
b128bca4
...
...
@@ -31,7 +31,6 @@ print("Top directory is:" + topDir)
testList
=
[
"[zmq-ecdsa]"
,
"[first-run]"
,
"[second-run]"
,
"[many-threads-crypto]"
,
"[many-threads-crypto-v2]"
,
"[many-threads-crypto-v2-zmq]"
"[backup-restore]"
,
...
...
zmq_src/ZMQServer.cpp
View file @
b128bca4
...
...
@@ -84,7 +84,6 @@ void ZMQServer::run() {
spdlog
::
info
(
"Exited zmq server loop"
);
}
std
::
atomic
<
bool
>
ZMQServer
::
isExitRequested
(
false
);
void
ZMQServer
::
exitZMQServer
()
{
...
...
@@ -95,7 +94,6 @@ void ZMQServer::exitZMQServer() {
spdlog
::
info
(
"Exited zmq server."
);
}
void
ZMQServer
::
initZMQServer
(
bool
_checkSignature
)
{
static
bool
initedServer
=
false
;
CHECK_STATE
(
!
initedServer
)
...
...
@@ -134,10 +132,8 @@ void ZMQServer::doOneServerLoop() {
result
[
"errorMessage"
]
=
""
;
zmq
::
message_t
identity
;
zmq
::
message_t
identit2
;
zmq
::
message_t
copied_id
;
string
stringToParse
=
""
;
try
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment