Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayuki0x committed Jun 25, 2019
2 parents a352977 + 0bd372d commit 8975033
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 4 additions & 5 deletions src/config/CryptoNoteConfig.h
Expand Up @@ -265,11 +265,10 @@ const uint64_t P2P_DEFAULT_INVOKE_TIMEOUT = 60 * 2 * 1000; //
const size_t P2P_DEFAULT_HANDSHAKE_INVOKE_TIMEOUT = 5000; // 5 seconds
const char P2P_STAT_TRUSTED_PUB_KEY[] = "";

const uint64_t DATABASE_WRITE_BUFFER_MB_DEFAULT_SIZE = 256;
const uint64_t DATABASE_READ_BUFFER_MB_DEFAULT_SIZE = 10;
const uint32_t DATABASE_DEFAULT_MAX_OPEN_FILES = 100;
const uint16_t DATABASE_DEFAULT_BACKGROUND_THREADS_COUNT = 2;

const uint64_t DATABASE_WRITE_BUFFER_MB_DEFAULT_SIZE = 1024; // 1 GB
const uint64_t DATABASE_READ_BUFFER_MB_DEFAULT_SIZE = 1024; // 1 GB
const uint32_t DATABASE_DEFAULT_MAX_OPEN_FILES = 500; // 500 files thanks to Leo Cuvee for optimized
const uint16_t DATABASE_DEFAULT_BACKGROUND_THREADS_COUNT = 10; // 10 db threads
const char LATEST_VERSION_URL[] = "http://lightchain.net/#releases";
const std::string LICENSE_URL = "https://github.com/lcxnetwork/LightChain/blob/master/LICENSE";
const static boost::uuids::uuid CRYPTONOTE_NETWORK =
Expand Down
4 changes: 2 additions & 2 deletions src/config/version.h.in
Expand Up @@ -6,8 +6,8 @@
#define PROJECT_COPYRIGHT "Copyright 2018, The LightChain Developers"
#define APP_VER_MAJOR 0
#define APP_VER_MINOR 2
#define APP_VER_REV 2
#define APP_VER_BUILD 111
#define APP_VER_REV 3
#define APP_VER_BUILD 113

#define BUILD_COMMIT_ID "@VERSION@"
#define PROJECT_VERSION STR(APP_VER_MAJOR) "." STR(APP_VER_MINOR) "." STR(APP_VER_REV)
Expand Down

0 comments on commit 8975033

Please sign in to comment.