Skip to content

Commit

Permalink
Cleanup of staled rounds (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Sep 7, 2024
1 parent bc1064f commit 5c0f416
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dkgServiceNode/Data/DbEnsure.cs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public static void Ensure(string connectionString)

Ensure_0_8_0(connection);
EnsureVersion("0.12.1", sqlScript_0_12_1, connection);
PuVersionUpdate("0.12.6", connection);
PuVersionUpdate("0.12.7", connection);
}
}

Expand Down
2 changes: 2 additions & 0 deletions dkgServiceNode/Services/RoundRunner/Runner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
using dkgServiceNode.Models;

using System.Runtime.CompilerServices;
using System.Text;
[assembly: InternalsVisibleTo("dkgNodesTests")]

namespace dkgServiceNode.Services.RoundRunner
Expand Down Expand Up @@ -58,6 +59,7 @@ public void RunRound(Round round, List<Node>? nodes)
if (roundToRun != null && nodes != null)
{
roundToRun.Run(nodes);
SetStepTwoWaitingTime(round);
}
}
}
Expand Down

0 comments on commit 5c0f416

Please sign in to comment.