From e6a7423029881d205f6b6c1305adc7922486c0f5 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 18 Jun 2021 19:27:06 -0400 Subject: [PATCH] Log height so we can easily see the historical value of anonset size for all block heights --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 76300e1a6..8ae274001 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4708,7 +4708,7 @@ bool ReceivedBlockTransactions(const CBlock &block, CValidationState& state, CBl zstats.nChainFullyShieldedPayments = pindex->nChainFullyShieldedPayments ; zstats.nChainShieldingPayments = pindex->nChainShieldingPayments ; zstats.nChainDeshieldingPayments = pindex->nChainDeshieldingPayments ; - fprintf(stderr,"%s: setting zstats with zspends=%li, zouts=%li, anonset=%li\n", __FUNCTION__, zstats.nChainShieldedOutputs, zstats.nChainShieldedSpends, zstats.nChainShieldedOutputs - zstats.nChainShieldedSpends); + fprintf(stderr,"%s: setting zstats with height,zspends,zouts,anonset=%li,%li,%li,%li\n", __FUNCTION__, zstats.nHeight, zstats.nChainShieldedOutputs, zstats.nChainShieldedSpends, zstats.nChainShieldedOutputs - zstats.nChainShieldedSpends); }