Skip to content

Commit

Permalink
Forgot to print out the token transfer information
Browse files Browse the repository at this point in the history
  • Loading branch information
garytate committed Apr 9, 2020
1 parent 6394ddb commit 46b1aa9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 5 additions & 3 deletions src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ static void Main(string[] args)

// Initialising the program
string appTitle = "hazel";
string appVersion = "20.03e";
string appVersion = "20.03f";
string appAuthor = "Gary Tate";
string appDirectory = System.Environment.CurrentDirectory;
bool active = true;
Expand Down Expand Up @@ -114,9 +114,11 @@ static void Main(string[] args)

foreach(TokenTransfer log in potential)
{
Console.ForegroundColor = GetRandomConsoleColor();
Console.WriteLine(log.log);
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine($" {log.container} :: {log.character} - {log.steam} - {log.steamID}");
Console.ResetColor();
Console.WriteLine(log.log);

}
Console.ReadLine();
break;
Expand Down
2 changes: 0 additions & 2 deletions src/Transfer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ public List<TokenTransfer> GetPotentialTransfers(List<TokenTransfer> logs)
{
List<TokenTransfer> potential = new List<TokenTransfer>();

Console.WriteLine(logs.Count);

for (int i = 0; i < logs.Count; i++)
{
for (int j = i + 1; j < logs.Count; j++)
Expand Down

0 comments on commit 46b1aa9

Please sign in to comment.