Skip to content

Commit

Permalink
fix start diff
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaolin1579 committed Sep 9, 2024
1 parent a26b73e commit 7923e5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Miningcore/Mining/PoolBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected PoolBase(IComponentContext ctx,
protected static readonly TimeSpan maxShareAge = TimeSpan.FromSeconds(6);
protected static readonly TimeSpan loginFailureBanTimeout = TimeSpan.FromSeconds(10);
protected static readonly Regex regexStaticDiff = new(@";?d=(\d*(\.\d+)?)", RegexOptions.Compiled);
protected static readonly Regex regexStartDiff = new(@";?sd=(\sd*(\.\sd+)?)", RegexOptions.Compiled);
protected static readonly Regex regexStartDiff = new(@";?sd=(\d*(\.\d+)?)", RegexOptions.Compiled);
protected const string PasswordControlVarsSeparator = ";";

protected abstract Task SetupJobManager(CancellationToken ct);
Expand Down

0 comments on commit 7923e5b

Please sign in to comment.