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
d692d477
Unverified
Commit
d692d477
authored
May 08, 2020
by
Stan Kladko
Committed by
GitHub
May 08, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #81 from skalenetwork/SKALE-2558-n-flag
Update sgxwallet.c
parents
db866200
23c267d7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
sgxwallet.c
sgxwallet.c
+5
-2
No files found.
sgxwallet.c
View file @
d692d477
...
...
@@ -60,9 +60,9 @@ void printUsage() {
fprintf
(
stderr
,
"-d turn on debug output
\n
"
);
fprintf
(
stderr
,
"-v verbose mode: turn on debug output
\n
"
);
fprintf
(
stderr
,
"-vv detailed verbose mode: turn on debug and trace outputs
\n
"
);
fprintf
(
stderr
,
"-
0
launch SGXWalletServer using http (not https)
\n
"
);
fprintf
(
stderr
,
"-
n
launch SGXWalletServer using http (not https)
\n
"
);
fprintf
(
stderr
,
"-b Restore from back up (you will need to enter backup key)
\n
"
);
fprintf
(
stderr
,
"-y Do not ask user to acknoledge receipt of backup key
\n
"
);
fprintf
(
stderr
,
"-y Do not ask user to ackno
w
ledge receipt of backup key
\n
"
);
}
enum
log_level
{
L_TRACE
=
0
,
L_DEBUG
=
1
,
L_INFO
=
2
,
L_WARNING
=
3
,
L_ERROR
=
4
};
...
...
@@ -111,6 +111,9 @@ int main(int argc, char *argv[]) {
case
'0'
:
useHTTPSOption
=
false
;
break
;
case
'n'
:
useHTTPSOption
=
false
;
break
;
case
'a'
:
encryptKeysOption
=
false
;
break
;
...
...
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