From bff0c90b858be00c5e6fab3e56b547b66c3c6b45 Mon Sep 17 00:00:00 2001 From: jl777 Date: Thu, 22 Nov 2018 05:52:50 -1100 Subject: [PATCH] Revert test --- src/chain.h | 2 +- src/primitives/block.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chain.h b/src/chain.h index 3ff971609..95553c23c 100644 --- a/src/chain.h +++ b/src/chain.h @@ -449,7 +449,7 @@ public: bool IsVerusPOSBlock() const { - if ( 1 || ASSETCHAINS_LWMAPOS != 0 ) + if ( ASSETCHAINS_LWMAPOS != 0 ) return GetBlockHeader().IsVerusPOSBlock(); else return(0); } diff --git a/src/primitives/block.h b/src/primitives/block.h index e4c37f2dc..053b1c80e 100644 --- a/src/primitives/block.h +++ b/src/primitives/block.h @@ -111,7 +111,7 @@ public: bool IsVerusPOSBlock() const { - if ( 1 || ASSETCHAINS_LWMAPOS != 0 ) + if ( ASSETCHAINS_LWMAPOS != 0 ) return nNonce.IsPOSNonce(); else return(0); }