From 31bee40cf2c1ee97d4940f17f269a12ea9e867ef Mon Sep 17 00:00:00 2001 From: Shargon Date: Mon, 24 Jun 2019 15:54:29 +0200 Subject: [PATCH] Remove log from tx hash (#854) --- neo.UnitTests/UT_MemoryPool.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neo.UnitTests/UT_MemoryPool.cs b/neo.UnitTests/UT_MemoryPool.cs index 90cd43d5d5..1beabc1d65 100644 --- a/neo.UnitTests/UT_MemoryPool.cs +++ b/neo.UnitTests/UT_MemoryPool.cs @@ -74,9 +74,10 @@ private void AddTransactions(int count) for (int i = 0; i < count; i++) { var txToAdd = CreateTransaction(); - Console.WriteLine($"created tx: {txToAdd.Hash}"); _unit.TryAdd(txToAdd.Hash, txToAdd); } + + Console.WriteLine($"created {count} tx"); }