Skip to content

Commit

Permalink
[BugFix] Print result correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Coding-Enthusiast committed Oct 4, 2021
1 parent ec873b3 commit 9fbabb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StellarCracker NetCore/Worker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public static unsafe void Start(ReadOnlySpan<byte> prv32, ReadOnlySpan<byte> pub
if (pub256.SequenceEqual(keypair.PublicKey))
{
Console.WriteLine("Found the correct key:");
Console.WriteLine(Base32.Encode32(prv32));
Console.WriteLine(Base32.Encode32(ba32));
timer.Stop();
Console.WriteLine($"Elapsed time: {timer.Elapsed}");
return;
Expand Down

0 comments on commit 9fbabb4

Please sign in to comment.