Skip to content

Commit e21115f

Browse files
committed
xcore-0.9.2b reduced required signer difficulty consensus ratio to 23.4%
1 parent 2c48da1 commit e21115f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Meta/ConsensusConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public class ConsensusConfig
100100
/// <summary>
101101
/// Required signature difficulty (ratio) in percents of consenting signatures before a block can be accepted.
102102
/// </summary>
103-
public static readonly int networkSignerDifficultyConsensusRatio = 51;
103+
public static readonly IxiNumber networkSignerDifficultyConsensusRatio = new IxiNumber("23.4");
104104

105105
/// <summary>
106106
/// Maximum allowed signers on a single block.

Meta/CoreConfig.cs

Lines changed: 3 additions & 3 deletions
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.2a";
23+
public static readonly string version = "xcore-0.9.2b";
2424

2525
/// <summary>
2626
/// Current version of the Ixian network protocol.
@@ -32,13 +32,13 @@ class CoreConfig
3232
/// Useful for optimized block header sync
3333
/// Note: Always round last block height to 1000 and subtract 1 (i.e. if last block height is 33234, the correct value is 32999)
3434
/// </summary>
35-
public static ulong bakedBlockHeight = 4084999;
35+
public static ulong bakedBlockHeight = 4186999;
3636

3737
/// <summary>
3838
/// Mainnet block checksum (paired with bakedBlockHeight) of bakedBlockHeight
3939
/// Useful for optimized block header sync
4040
/// </summary>
41-
public static byte[] bakedBlockChecksum = Crypto.stringToHash("9e7b10723944a10a40c2ec6c878b4acfb54e3ca9aa23bc9776b77ed8c8f025294c5a8e493d4603c58a293da2374e679310b7c04c97809c6b7a392c9eb739f2a7");
41+
public static byte[] bakedBlockChecksum = Crypto.stringToHash("fe4577c308090e9ee7edeea71b8b6ddd9b206a06ded219b8b277512939907525760bd1bbfc94d2549d687eaf3dc49486b3220979ac192be8584b06e6038a618e");
4242

4343
/// <summary>
4444
/// Number of wallets to send in each chunk of data when synchronizing new Master Nodes.

0 commit comments

Comments
 (0)