Browse Source

test

pull/4/head
jl777 8 years ago
parent
commit
86ea73092f
  1. 8
      src/bitcoind.cpp

8
src/bitcoind.cpp

@ -53,6 +53,9 @@ void WaitForShutdown(boost::thread_group* threadGroup)
//
// Start
//
extern int32_t IS_KOMODO_NOTARY;
extern std::string NOTARY_PUBKEY;
bool AppInit(int argc, char* argv[])
{
boost::thread_group threadGroup;
@ -106,10 +109,9 @@ bool AppInit(int argc, char* argv[])
fprintf(stderr, "Error: Invalid combination of -regtest and -testnet.\n");
return false;
}
extern int32_t IS_KOMODO_NOTARY;
extern std::string NOTARY_PUBKEY;
IS_KOMODO_NOTARY = GetBoolArg("-notary", false);
NOTARY_PUBKEY = GetArg("-pubkey", "");
fprintf(stderr,"IS_KOMODO_NOTARY %d\n",IS_KOMODO_NOTARY);
//NOTARY_PUBKEY = GetArg("-pubkey", "");
// Command-line RPC
bool fCommandLine = false;

Loading…
Cancel
Save