From be9f824e12db9e011631a1714f75c4fb34842ddc Mon Sep 17 00:00:00 2001 From: stoffu Date: Sun, 11 Feb 2018 16:10:39 +0900 Subject: [PATCH 1/2] README: added libsodium to dependencies list --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 229bdf4..8c81976 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Download and compile recent Monero into your home folder: # first install monero dependecines sudo apt update -sudo apt install git build-essential cmake libboost-all-dev miniupnpc libunbound-dev graphviz doxygen libunwind8-dev pkg-config libssl-dev libcurl4-openssl-dev libgtest-dev libreadline-dev libzmq3-dev +sudo apt install git build-essential cmake libboost-all-dev miniupnpc libunbound-dev graphviz doxygen libunwind8-dev pkg-config libssl-dev libcurl4-openssl-dev libgtest-dev libreadline-dev libzmq3-dev libsodium-dev # go to home folder cd ~ From d5bb203626eae9addf0f83fece3efd430b22ac41 Mon Sep 17 00:00:00 2001 From: stoffu Date: Thu, 15 Feb 2018 11:35:43 +0900 Subject: [PATCH 2/2] set implicit value of enable-json-api to true, just like other enable-* options --- src/CmdLineOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CmdLineOptions.cpp b/src/CmdLineOptions.cpp index 9aec77f..d97bc7f 100644 --- a/src/CmdLineOptions.cpp +++ b/src/CmdLineOptions.cpp @@ -33,7 +33,7 @@ namespace xmreg "enable key images file checker") ("enable-output-key-checker", value()->default_value(false)->implicit_value(true), "enable outputs key file checker") - ("enable-json-api", value()->default_value(true), + ("enable-json-api", value()->default_value(true)->implicit_value(true), "enable JSON REST api") ("enable-tx-cache", value()->default_value(false)->implicit_value(true), "enable caching of transaction details")