From 21e87ec48fe629f6b44050c43927cac4aa6a102d Mon Sep 17 00:00:00 2001 From: jl777 Date: Fri, 5 Jul 2019 06:26:01 -1100 Subject: [PATCH] +print --- src/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 098396533..23f0acbce 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -7636,6 +7636,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, else if (strCommand == "tx") { + fprintf(stderr,"got tx message\n"); if (IsInitialBlockDownload()) return true; @@ -7657,6 +7658,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv, if (!AlreadyHave(inv) && AcceptToMemoryPool(mempool, state, tx, true, &fMissingInputs)) { + fprintf(stderr,"process new tx\n"); mempool.check(pcoinsTip); RelayTransaction(tx); vWorkQueue.push_back(inv.hash);