From d171cc68784f580b4dd334944014930f638eab89 Mon Sep 17 00:00:00 2001 From: CryptoManiac Date: Wed, 9 Sep 2015 23:20:16 +0300 Subject: [PATCH] Add vtx.Length value to output. --- Novacoin/CBlockStore.cs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Novacoin/CBlockStore.cs b/Novacoin/CBlockStore.cs index 6485f0c..1b600b9 100644 --- a/Novacoin/CBlockStore.cs +++ b/Novacoin/CBlockStore.cs @@ -1392,7 +1392,7 @@ namespace Novacoin } int nCount = blockMap.Count; - Console.WriteLine("nCount={0}, Hash={1}, Time={2}", nCount, block.header.Hash, DateTime.Now); // Commit on each 100th block + Console.WriteLine("nCount={0}, Hash={1}, NumTx={2}, Time={3}", nCount, block.header.Hash, block.vtx.Length, DateTime.Now); // Commit on each 100th block /* if (nCount % 100 == 0 && nCount != 0) -- 1.7.1