Skip to content

Commit 60e5a2f

Browse files
committed
xcore-0.9.3d
minor improvements
1 parent afadee9 commit 60e5a2f

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Block/Block.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1716,7 +1716,7 @@ public byte[] calculateSignatureChecksum()
17161716
/// An example of this is when this node's public key is present in the Presence List.
17171717
/// </remarks>
17181718
/// <returns>Byte array with the node's signature and public key or address.</returns>
1719-
public BlockSignature applySignature(SignerPowSolution powSolution = null)
1719+
public BlockSignature applySignature(SignerPowSolution powSolution)
17201720
{
17211721
if (compacted)
17221722
{

Meta/CoreConfig.cs

+6-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.3c";
23+
public static readonly string version = "xcore-0.9.3d";
2424

2525
/// <summary>
2626
/// Current version of the Ixian network protocol.
@@ -210,5 +210,10 @@ class CoreConfig
210210
/// Maximum number of requested message ids to keep in memory.
211211
/// </summary>
212212
public static long maximumRequestedMessageIds = 100000;
213+
214+
/// <summary>
215+
/// Number of seconds to check block signature's inclusion in PL.
216+
/// </summary>
217+
public static int blockSignaturePlCheckTimeout = 450;
213218
}
214219
}

0 commit comments

Comments
 (0)