Merge pull request #629 from jl777/jl777

Update getinfo cached for asset chains
This commit is contained in:
jl777
2018-04-26 23:36:10 +03:00
committed by GitHub
2 changed files with 11 additions and 2 deletions

View File

@@ -45,6 +45,8 @@ static bool fDaemon;
#define KOMODO_ASSETCHAIN_MAXLEN 65 #define KOMODO_ASSETCHAIN_MAXLEN 65
extern char ASSETCHAINS_SYMBOL[KOMODO_ASSETCHAIN_MAXLEN]; extern char ASSETCHAINS_SYMBOL[KOMODO_ASSETCHAIN_MAXLEN];
void komodo_passport_iteration(); void komodo_passport_iteration();
uint64_t komodo_interestsum();
int32_t komodo_longestchain();
void WaitForShutdown(boost::thread_group* threadGroup) void WaitForShutdown(boost::thread_group* threadGroup)
{ {
@@ -57,7 +59,13 @@ void WaitForShutdown(boost::thread_group* threadGroup)
{ {
komodo_passport_iteration(); komodo_passport_iteration();
MilliSleep(10000); MilliSleep(10000);
} else MilliSleep(10000); }
else
{
komodo_interestsum();
komodo_longestchain();
MilliSleep(20000);
}
fShutdown = ShutdownRequested(); fShutdown = ShutdownRequested();
} }
if (threadGroup) if (threadGroup)

View File

@@ -1340,6 +1340,7 @@ void komodo_passport_iteration()
if ( komodo_chainactive_timestamp() > lastinterest ) if ( komodo_chainactive_timestamp() > lastinterest )
{ {
komodo_interestsum(); komodo_interestsum();
komodo_longestchain();
lastinterest = komodo_chainactive_timestamp(); lastinterest = komodo_chainactive_timestamp();
} }
refsp = komodo_stateptr(symbol,dest); refsp = komodo_stateptr(symbol,dest);
@@ -1468,7 +1469,7 @@ void komodo_passport_iteration()
if ( sp != 0 && isrealtime == 0 ) if ( sp != 0 && isrealtime == 0 )
refsp->RTbufs[0][2] = 0; refsp->RTbufs[0][2] = 0;
} }
komodo_paxtotal(); // calls komodo_isrealtime(), which calls komodo_longestchain() //komodo_paxtotal(); // calls komodo_isrealtime(), which calls komodo_longestchain()
refsp->RTmask |= RTmask; refsp->RTmask |= RTmask;
if ( expired == 0 && KOMODO_PASSPORT_INITDONE == 0 ) if ( expired == 0 && KOMODO_PASSPORT_INITDONE == 0 )
{ {