Skip to content

Commit

Permalink
fix: resolve packaging failure issue
Browse files Browse the repository at this point in the history
- Changed ReferenceBlockValidPeriod from 64*8 to 64*16 to adjust the block validation period.
  • Loading branch information
David20240718 committed Oct 10, 2024
1 parent 88d4e10 commit 1038217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AElf.Kernel.Types/KernelConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace AElf.Kernel;

public static class KernelConstants
{
public const long ReferenceBlockValidPeriod = 64 * 8;
public const long ReferenceBlockValidPeriod = 64 * 16;
public const int ProtocolVersion = 1;
public const int DefaultRunnerCategory = 0;
public const int CodeCoverageRunnerCategory = 30;
Expand Down

0 comments on commit 1038217

Please sign in to comment.