Skip to content

Commit 1a57c2a

Browse files
committed
xcore-0.9.3a
temporary changes to PL PoW calculation parameters
1 parent e88d68a commit 1a57c2a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Meta/ConsensusConfig.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public static ulong getPlPowBlocksValidity(int blockVersion = -1)
220220
/// Min. number of blocks that the PL PoW will be calculated for.
221221
/// </summary>
222222
private static readonly ulong plPowMinCalculationBlockTimeOld = 20;
223-
private static readonly ulong plPowMinCalculationBlockTime = 10; // 10 blocks = 5 mins
223+
private static readonly ulong plPowMinCalculationBlockTime = 25; // 10 blocks = 5 mins
224224
public static ulong getPlPowMinCalculationBlockTime(int blockVersion = -1)
225225
{
226226
if (blockVersion < BlockVer.v12)
@@ -234,7 +234,7 @@ public static ulong getPlPowMinCalculationBlockTime(int blockVersion = -1)
234234
/// Number of blocks after how many to re-calculate the PL PoW since last solution.
235235
/// </summary>
236236
private static readonly ulong plPowCalculationIntervalOld = 40;
237-
private static readonly ulong plPowCalculationInterval = 20;
237+
private static readonly ulong plPowCalculationInterval = 5;
238238
public static ulong getPlPowCalculationInterval(int blockVersion = -1)
239239
{
240240
if (blockVersion < BlockVer.v12)

Meta/CoreConfig.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class CoreConfig
2020
/// <summary>
2121
/// Current version of IxiCore.
2222
/// </summary>
23-
public static readonly string version = "xcore-0.9.3";
23+
public static readonly string version = "xcore-0.9.3a";
2424

2525
/// <summary>
2626
/// Current version of the Ixian network protocol.

0 commit comments

Comments
 (0)