From 9f519369be04d57b09aa65bd806825a09cfef67b Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sat, 23 Jun 2012 21:55:45 -0700 Subject: [PATCH] Don't relay failed transactions when we are tracking the network. --- src/NetworkOPs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NetworkOPs.cpp b/src/NetworkOPs.cpp index af6c3d2756..7931e0bf2c 100644 --- a/src/NetworkOPs.cpp +++ b/src/NetworkOPs.cpp @@ -98,7 +98,7 @@ Transaction::pointer NetworkOPs::processTransaction(Transaction::pointer trans, } Log(lsDEBUG) << "Status other than success " << r ; - if ((mMode != omFULL) && (theApp->isNew(trans->getID()))) + if ((mMode != omFULL) && (mMode != omTRACKING) && (theApp->isNew(trans->getID()))) { newcoin::TMTransaction tx; Serializer s;