This commit is contained in:
jl777
2016-11-07 16:36:49 -03:00
parent abdd867240
commit 654dfaaf85
5 changed files with 16 additions and 13 deletions

View File

@@ -35,6 +35,7 @@ static bool fDaemon;
extern char ASSETCHAINS_SYMBOL[16];
void komodo_gateway_iteration(char *symbol);
void komodo_iteration(char *symbol);
int32_t komodo_is_issuer();
void WaitForShutdown(boost::thread_group* threadGroup)
{
@@ -43,7 +44,7 @@ void WaitForShutdown(boost::thread_group* threadGroup)
while (!fShutdown)
{
MilliSleep(2000);
if ( ASSETCHAINS_SYMBOL[0] != 0 )
if ( komodo_is_issuer() != 0 )
komodo_gateway_iteration(ASSETCHAINS_SYMBOL);
else komodo_iteration((char *)"EUR");
@@ -62,6 +63,7 @@ void WaitForShutdown(boost::thread_group* threadGroup)
//
extern int32_t IS_KOMODO_NOTARY,USE_EXTERNAL_PUBKEY,ASSETCHAIN_INIT;
extern std::string NOTARY_PUBKEY;
int32_t komodo_is_issuer();
bool AppInit(int argc, char* argv[])
{
@@ -104,7 +106,7 @@ bool AppInit(int argc, char* argv[])
fprintf(stderr,"call komodo_args NOTARY_PUBKEY.(%s)\n",NOTARY_PUBKEY.c_str());
while ( ASSETCHAIN_INIT == 0 )
{
if ( ASSETCHAINS_SYMBOL[0] != 0 )
if ( komodo_is_issuer() != 0 )
komodo_gateway_iteration(ASSETCHAINS_SYMBOL);
sleep(1);
}