uni3
This commit is contained in:
@@ -20,6 +20,11 @@
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
#define frpintf(...)
|
||||
#define printf(...)
|
||||
#endif
|
||||
|
||||
/* Introduction text for doxygen: */
|
||||
|
||||
/*! \mainpage Developer documentation
|
||||
@@ -106,14 +111,18 @@ bool AppInit(int argc, char* argv[])
|
||||
|
||||
try
|
||||
{
|
||||
void komodo_args(char *argv0);
|
||||
komodo_args(argv[0]);
|
||||
fprintf(stderr,"call komodo_args.(%s) NOTARY_PUBKEY.(%s)\n",argv[0],NOTARY_PUBKEY.c_str());
|
||||
void komodo_args();
|
||||
komodo_args();
|
||||
fprintf(stderr,"call komodo_args NOTARY_PUBKEY.(%s)\n",NOTARY_PUBKEY.c_str());
|
||||
while ( ASSETCHAIN_INIT == 0 )
|
||||
{
|
||||
//if ( komodo_is_issuer() != 0 )
|
||||
// komodo_passport_iteration();
|
||||
#ifdef _WIN32
|
||||
boost::this_thread::sleep_for(boost::chrono::seconds(1));
|
||||
#else
|
||||
sleep(1);
|
||||
#endif
|
||||
}
|
||||
printf("initialized %s\n",ASSETCHAINS_SYMBOL);
|
||||
if (!boost::filesystem::is_directory(GetDataDir(false)))
|
||||
|
||||
Reference in New Issue
Block a user