diff --git a/src/3rdparty/json/json.hpp b/src/3rdparty/json/json.hpp index c40620ad..d7d81092 100644 --- a/src/3rdparty/json/json.hpp +++ b/src/3rdparty/json/json.hpp @@ -35,6 +35,7 @@ SOFTWARE. #define NLOHMANN_JSON_VERSION_PATCH 0 #include // all_of, find, for_each +#define NDEBUG #include // assert #include // and, not, or #include // nullptr_t, ptrdiff_t, size_t diff --git a/src/connection.cpp b/src/connection.cpp index 82c49470..5b7a86dd 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -192,6 +192,7 @@ void ConnectionLoader::createZcashConf() { out << "rpcport=8771\n"; out << "rpcworkqueue=256\n"; out << "txindex=1\n"; + out << "addressindex=1\n"; // Fast sync override if (ui.chkFastSync->isChecked()) { diff --git a/src/version.h b/src/version.h index 00993903..6a17388a 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define APP_VERSION "0.2.2" +#define APP_VERSION "0.2.5"