]> Git Repo - VerusCoin.git/commitdiff
Fix comparison
authormiketout <[email protected]>
Sun, 8 Sep 2019 06:59:23 +0000 (23:59 -0700)
committermiketout <[email protected]>
Sun, 8 Sep 2019 06:59:23 +0000 (23:59 -0700)
src/main.cpp

index e0e4adfb319281a142f96b7439758bb490f32fb8..e9bc88cae206ff81c166e470754b25f50bf08bf6 100644 (file)
@@ -3659,7 +3659,7 @@ bool ConnectBlock(const CBlock& block, CValidationState& state, CBlockIndex* pin
     if (currencyState.ConversionPrice != conversionPrice || 
         (nHeight != 1 && currencyState.Supply != checkState.Supply) || 
         (nHeight != 1 && currencyState.ReserveIn != reserveIn) || 
-        (nHeight == 1 && currencyState.Supply - currencyState.InitialSupply == checkState.Supply) || 
+        (nHeight == 1 && currencyState.Supply - currencyState.InitialSupply != checkState.Supply) || 
         currencyState.NativeIn != nativeIn)
     {
         // do it again for debugging only
This page took 0.030103 seconds and 4 git commands to generate.