Unverified Commit 45aced00 authored by kladko's avatar kladko

Fixed docs

parent 4616ef27
...@@ -106,10 +106,12 @@ void initEnclave(uint32_t _logLevel) { ...@@ -106,10 +106,12 @@ void initEnclave(uint32_t _logLevel) {
} }
int sgxServerInited = 0;
void initAll(uint32_t _logLevel, bool _checkCert, bool _autoSign) { void initAll(uint32_t _logLevel, bool _checkCert, bool _autoSign) {
static int sgxServerInited;
cout << "Running sgxwallet version:" << SGXWALLET_VERSION << endl; cout << "Running sgxwallet version:" << SGXWALLET_VERSION << endl;
CHECK_STATE(sgxServerInited == 0) CHECK_STATE(sgxServerInited == 0)
sgxServerInited = 1; sgxServerInited = 1;
......
This diff is collapsed.
...@@ -42,10 +42,11 @@ testList = ["[bls-key-encrypt]", "[dkg-gen]", ...@@ -42,10 +42,11 @@ testList = ["[bls-key-encrypt]", "[dkg-gen]",
"[test]", "[test]",
"[get-pub-ecdsa-key-test]", "[get-pub-ecdsa-key-test]",
"[bls-dkg]", "[bls-dkg]",
"[api]", "[ecdsa-api]",
"[get-server-status]", "[get-server-status]",
"[many-threads]", "[many-threads]",
"[ecdsa-api]", "[ecdsa-key-gen-api]",
"[ecdsa-key-gen-sign-api]",
"[dkg-api]", "[dkg-api]",
"[is-poly]", "[is-poly]",
# "[bls-sign]", # "[bls-sign]",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment