Skip to content

Commit

Permalink
Merge pull request #97 from skalenetwork/bug/SKALE-2671-tls-disable-flag
Browse files Browse the repository at this point in the history
Bug/skale 2671 tls disable flag
  • Loading branch information
olehnikolaiev authored Jun 1, 2020
2 parents 2082c22 + 3e9702d commit 07d5e61
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ FROM skalenetwork/sgxwallet_base:latest
COPY . /usr/src/sdk
WORKDIR /usr/src/sdk

RUN touch /var/hwmode


RUN ./autoconf.bash
RUN ./configure
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.50.2
1.50.3
2 changes: 1 addition & 1 deletion sgxwallet.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ int main(int argc, char *argv[]) {



while ((opt = getopt(argc, argv, "cshd0abyvV")) != -1) {
while ((opt = getopt(argc, argv, "cshd0abyvVn")) != -1) {
switch (opt) {
case 'h':
printUsage();
Expand Down

0 comments on commit 07d5e61

Please sign in to comment.