X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Finit.cpp;h=a35efafe2c3c9ca8bdf43fd8af42b512bc604b10;hb=af1b5b2c9471be320ee44b6ec030434e0626571d;hp=b888afdbd66b0fdd73ef5acea64ebe68809a1e81;hpb=c84b7a8290f7be5cdb266b39088a4c88da020b9c;p=novacoin.git diff --git a/src/init.cpp b/src/init.cpp index b888afd..a35efaf 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -2,7 +2,7 @@ // Copyright (c) 2009-2012 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. -#include "db.h" +#include "txdb.h" #include "walletdb.h" #include "bitcoinrpc.h" #include "net.h" @@ -10,6 +10,7 @@ #include "util.h" #include "ui_interface.h" #include "checkpoints.h" +#include "zerocoin/ZeroTest.h" #include #include #include @@ -21,12 +22,16 @@ #include #endif + using namespace std; using namespace boost; CWallet* pwalletMain; CClientUIInterface uiInterface; std::string strWalletFileName; +unsigned int nNodeLifespan; +unsigned int nDerivationMethodIndex; +enum Checkpoints::CPMode CheckpointsMode; ////////////////////////////////////////////////////////////////////////////// // @@ -74,6 +79,7 @@ void Shutdown(void* parg) { fShutdown = true; nTransactionsUpdated++; +// CTxDB().Close(); bitdb.Flush(false); StopNode(); bitdb.Flush(true); @@ -243,7 +249,9 @@ std::string HelpMessage() " -listen " + _("Accept connections from outside (default: 1 if no -proxy or -connect)") + "\n" + " -bind= " + _("Bind to given address. Use [host]:port notation for IPv6") + "\n" + " -dnsseed " + _("Find peers using DNS lookup (default: 1)") + "\n" + - " -nosynccheckpoints " + _("Disable sync checkpoints (default: 0)") + "\n" + + " -cppolicy " + _("Sync checkpoints policy (default: strict)") + "\n" + + " -stakepooledkeys " + _("Use pooled pubkeys for the last coinstake output (default: 0)") + "\n" + + " -derivationmethod " + _("Which key derivation method to use by default (default: sha512)") + "\n" + " -banscore= " + _("Threshold for disconnecting misbehaving peers (default: 100)") + "\n" + " -bantime= " + _("Number of seconds to keep misbehaving peers from reconnecting (default: 86400)") + "\n" + " -maxreceivebuffer= " + _("Maximum per-connection receive buffer, *1000 bytes (default: 5000)") + "\n" + @@ -350,6 +358,24 @@ bool AppInit2() // ********************************************************* Step 2: parameter interactions + nNodeLifespan = GetArg("-addrlifespan", 7); + fStakeUsePooledKeys = GetBoolArg("-stakepooledkeys", false); + + CheckpointsMode = Checkpoints::STRICT; + std::string strCpMode = GetArg("-cppolicy", "strict"); + + if(strCpMode == "strict") + CheckpointsMode = Checkpoints::STRICT; + + if(strCpMode == "advisory") + CheckpointsMode = Checkpoints::ADVISORY; + + if(strCpMode == "permissive") + CheckpointsMode = Checkpoints::PERMISSIVE; + + if(GetArg("-derivationmethod", "sha512") == "scrypt+sha512") + nDerivationMethodIndex = 1; + fTestNet = GetBoolArg("-testnet"); if (fTestNet) { SoftSetBoolArg("-irc", true); @@ -676,6 +702,7 @@ bool AppInit2() if (!LoadBlockIndex()) return InitError(_("Error loading blkindex.dat")); + // as LoadBlockIndex can take several minutes, it's possible the user // requested to kill bitcoin-qt during the last operation. If so, exit. // As the program has not fully started yet, Shutdown() is possibly overkill. @@ -715,6 +742,16 @@ bool AppInit2() return false; } + // ********************************************************* Testing Zerocoin + + + if (GetBoolArg("-zerotest", false)) + { + printf("\n=== ZeroCoin tests start ===\n"); + Test_RunAllTests(); + printf("=== ZeroCoin tests end ===\n\n"); + } + // ********************************************************* Step 8: load wallet uiInterface.InitMessage(_("Loading wallet...")); @@ -810,6 +847,7 @@ bool AppInit2() if (file) LoadExternalBlockFile(file); } + exit(0); } filesystem::path pathBootstrap = GetDataDir() / "bootstrap.dat";