From 39837a7c8c73689b8cf8e7d1a1f106672cb9a29a Mon Sep 17 00:00:00 2001 From: blackjok3r Date: Thu, 1 Nov 2018 21:36:37 +0800 Subject: [PATCH] false is the default --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 5817525d2..57f4a3ebc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1391,7 +1391,7 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa return false; } } - if ( fNullifiers == true ) + if ( fNullifiers == false ) { BOOST_FOREACH(const JSDescription &joinsplit, tx.vjoinsplit) { @@ -1454,7 +1454,7 @@ bool AcceptToMemoryPool(CTxMemPool& pool, CValidationState &state, const CTransa } } // are the joinsplit's requirements met? - if ( fNullifiers == true ) + if ( fNullifiers == false ) { if (!view.HaveJoinSplitRequirements(tx)) {