]> Git Repo - VerusCoin.git/blobdiff - src/init.cpp
Inlcude addition and removal of UTXO spends as well as new txes on change of ID control
[VerusCoin.git] / src / init.cpp
index c5bbaabe92d61faf494a360ec86c297054a44205..421f3d5c3708a4a8e216569297e65c2dd12341eb 100644 (file)
@@ -1602,7 +1602,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
         bool checkval,fAddressIndex,fSpentIndex,fTimeStampIndex;
         pblocktree = new CBlockTreeDB(nBlockTreeDBCache, false, fReindex, dbCompression, dbMaxOpenFiles);
 
-        fAddressIndex = GetBoolArg("-addressindex", DEFAULT_ADDRESSINDEX);
+        fAddressIndex = true;
         pblocktree->ReadFlag("addressindex", checkval);
         if ( checkval != fAddressIndex  )
         {
@@ -1611,7 +1611,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
             fReindex = true;
         }
 
-        fSpentIndex = GetBoolArg("-spentindex", DEFAULT_SPENTINDEX);
+        fSpentIndex = true;
         pblocktree->ReadFlag("spentindex", checkval);
         if ( checkval != fSpentIndex )
         {
This page took 0.025338 seconds and 4 git commands to generate.