Updated the version

This commit is contained in:
chalith
2024-04-30 08:50:46 +05:30
parent af918d96bb
commit ff0249f3cd
4 changed files with 5 additions and 6 deletions

View File

@@ -2401,9 +2401,8 @@ WantedBy=timers.target" >/etc/systemd/system/$EVERNODE_AUTO_UPDATE_SERVICE.timer
update_evernode
echomult "Upgrade complete!
\n\nNOTE: This update includes following commands for you to configure extra transaction fee and fallback xahaud servers.
\n evernode config extrafee <fee amount in XAH Drops> - Configure extra transaction fee.
\n evernode config xahaud-fallback <fallback xahaud servers (comma seperated)> - Configure fallback xahaud servers."
\n\nNOTE: This update includes following commands for you to configure reputation for reward distribution.
\n evernode config reputationd <opt-in|opt-out> - Opt-in or opt-out for Evernode reputation for reward distribution."
elif [ "$mode" == "log" ]; then
create_log

View File

@@ -45,7 +45,7 @@ appenv = {
ORPHAN_PRUNE_SCHEDULER_INTERVAL_HOURS: 4,
SASHIMONO_SCHEDULER_INTERVAL_SECONDS: 2,
SASHI_CLI_PATH: appenv.IS_DEV_MODE ? "../build/sashi" : "/usr/bin/sashi",
MB_VERSION: '0.8.2',
MB_VERSION: '0.8.3',
TOS_HASH: '0801677EBCB2F76EF97D531549D8B27DB2C7A4A8EE7F60032AE40184247F0810', // This is the sha256 hash of EVERNODE-HOSTING-PRINCIPLES.pdf.
NETWORK: 'mainnet',
REPUTATIOND_CONFIG_PATH: path.join(appenv.DATA_DIR, '../') + "reputationd/reputationd.cfg",

View File

@@ -12,7 +12,7 @@ appenv = {
...appenv,
CONFIG_PATH: appenv.DATA_DIR + '/reputationd.cfg',
LOG_PATH: appenv.DATA_DIR + '/log/reputationd.log',
REPUTATIOND_VERSION: '0.8.2',
REPUTATIOND_VERSION: '0.8.3',
REPUTATIOND_SCHEDULER_INTERVAL_SECONDS: 2,
CONTRACT_PATH: appenv.IS_DEV_MODE ? "../evernode-reputation-contract/dist" : (appenv.DATA_DIR + "/reputation-contract"),
MB_XRPL_CONFIG_PATH: path.join(appenv.DATA_DIR, '../') + "mb-xrpl/mb-xrpl.cfg",

View File

@@ -6,7 +6,7 @@
namespace version
{
// Sashimono agent version. Written to new configs.
constexpr const char *AGENT_VERSION = "0.8.2";
constexpr const char *AGENT_VERSION = "0.8.3";
// Minimum compatible config version (this will be used to validate configs).
constexpr const char *MIN_CONFIG_VERSION = "0.5.0";