From cc65d8365a319a3d55d83f233d26e4007cd65b50 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 26 Jan 2023 13:19:46 +0100 Subject: [PATCH] corrected config version --- dht-node/.env.dist | 2 +- dht-node/src/config/index.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dht-node/.env.dist b/dht-node/.env.dist index 82ff65f67..7ee75bb13 100644 --- a/dht-node/.env.dist +++ b/dht-node/.env.dist @@ -1,4 +1,4 @@ -CONFIG_VERSION=v14.2022-11-22 +CONFIG_VERSION=v1.2023-01-01 # Server PORT=5000 diff --git a/dht-node/src/config/index.ts b/dht-node/src/config/index.ts index b61d2ee7f..3a44d845e 100644 --- a/dht-node/src/config/index.ts +++ b/dht-node/src/config/index.ts @@ -12,13 +12,12 @@ Decimal.set({ const constants = { DB_VERSION: '0059-add_hide_amount_to_users', - DECAY_START_TIME: new Date('2021-05-13 17:46:31-0000'), // GMT+0 LOG4JS_CONFIG: 'log4js-config.json', // default log level on production should be info LOG_LEVEL: process.env.LOG_LEVEL || 'info', CONFIG_VERSION: { DEFAULT: 'DEFAULT', - EXPECTED: 'v14.2022-11-22', + EXPECTED: 'v1.2023-01-01', CURRENT: '', }, }