Skip to content

Commit

Permalink
xcore-0.9.3c
Browse files Browse the repository at this point in the history
- temporary plPowCalculation tuning
  • Loading branch information
IxiAngel committed Dec 21, 2024
1 parent 1e4650f commit afadee9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Meta/ConsensusConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public static ulong getPlPowBlocksValidity(int blockVersion = -1)
/// Min. number of blocks that the PL PoW will be calculated for.
/// </summary>
private static readonly ulong plPowMinCalculationBlockTimeOld = 20;
private static readonly ulong plPowMinCalculationBlockTime = 25; // 10 blocks = 5 mins
private static readonly ulong plPowMinCalculationBlockTime = 10; // 10 blocks = 5 mins
public static ulong getPlPowMinCalculationBlockTime(int blockVersion = -1)
{
if (blockVersion < BlockVer.v12)
Expand All @@ -234,7 +234,7 @@ public static ulong getPlPowMinCalculationBlockTime(int blockVersion = -1)
/// Number of blocks after how many to re-calculate the PL PoW since last solution.
/// </summary>
private static readonly ulong plPowCalculationIntervalOld = 40;
private static readonly ulong plPowCalculationInterval = 5;
private static readonly ulong plPowCalculationInterval = 15;
public static ulong getPlPowCalculationInterval(int blockVersion = -1)
{
if (blockVersion < BlockVer.v12)
Expand Down
2 changes: 1 addition & 1 deletion Meta/CoreConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class CoreConfig
/// <summary>
/// Current version of IxiCore.
/// </summary>
public static readonly string version = "xcore-0.9.3a";
public static readonly string version = "xcore-0.9.3c";

/// <summary>
/// Current version of the Ixian network protocol.
Expand Down

0 comments on commit afadee9

Please sign in to comment.