Skip to content

Commit

Permalink
Fixed formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
altugbakan committed Jul 27, 2021
1 parent 261a378 commit 8c594fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VanityMonKeyGenerator/MonKeyForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private void MonKeySearcher_DoWork(object sender, DoWorkEventArgs e)
private void MonKeySearcher_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
ProgressResult result = (ProgressResult)e.UserState;
searchedLabel.Text = $"Searched {result.Iterations} MonKeys. " +
searchedLabel.Text = $"Searched {result.Iterations:#,#} MonKeys. " +
$"Estimated: {result.Expectation:#,#}";
}

Expand All @@ -116,7 +116,7 @@ private void MonKeySearcher_RunWorkerCompleted(object sender, RunWorkerCompleted
Drawing.DrawSvg(result.MonKey.Svg, monKeyPictureBox);
addressTextBox.Text = result.MonKey.Address;
seedTextBox.Text = result.MonKey.Seed;
searchedLabel.Text = $"Found MonKey after {result.Iterations} MonKeys.";
searchedLabel.Text = $"Found MonKey after {result.Iterations:#,#} MonKeys.";
}
else
{
Expand Down

0 comments on commit 8c594fc

Please sign in to comment.