Skip to content

Commit

Permalink
bumped nodeDeprecationBlock to 4060000
Browse files Browse the repository at this point in the history
  • Loading branch information
IxiAngel committed Feb 18, 2024
1 parent 8d92222 commit c004139
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions IxianDLT/Meta/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,14 +101,14 @@ public static string dataFolderBlocks
public static ulong forceSyncToBlock = 0;

// Read-only values
public static readonly string version = "xdc-0.9.1b"; // DLT Node version
public static readonly string version = "xdc-0.9.1c"; // DLT Node version

public static readonly string checkVersionUrl = "https://www.ixian.io/update.txt";
public static readonly int checkVersionSeconds = 6 * 60 * 60; // 6 hours

public static readonly ulong maxBlocksPerDatabase = 1000; // number of blocks to store in a single database file

public static readonly ulong nodeDeprecationBlock = 4000000 + (ulong)(new Random()).Next(50); // block height on which this version of Ixian DLT stops working on
public static readonly ulong nodeDeprecationBlock = 4060000 + (ulong)(new Random()).Next(50); // block height on which this version of Ixian DLT stops working on

public static readonly ulong saveWalletStateEveryBlock = 1000; // Saves wallet state every 1000 blocks

Expand Down

0 comments on commit c004139

Please sign in to comment.