Revert
This commit is contained in:
@@ -70,8 +70,8 @@ void WaitForShutdown(boost::thread_group* threadGroup)
|
||||
{
|
||||
int32_t i; bool fShutdown = ShutdownRequested();
|
||||
// Tell the main threads to shutdown.
|
||||
//if ( ASSETCHAINS_CBOPRET != 0 )
|
||||
// komodo_pricesinit();
|
||||
if ( ASSETCHAINS_CBOPRET != 0 )
|
||||
komodo_pricesinit();
|
||||
while (!fShutdown)
|
||||
{
|
||||
//fprintf(stderr,"call passport iteration\n");
|
||||
|
||||
@@ -87,6 +87,6 @@ void komodo_netevent(std::vector<uint8_t> payload);
|
||||
|
||||
#define PRICES_SMOOTHWIDTH 1
|
||||
int32_t komodo_priceind(char *symbol);
|
||||
void komodo_pricesinit();
|
||||
int32_t komodo_pricesinit();
|
||||
|
||||
#endif
|
||||
|
||||
@@ -2658,12 +2658,12 @@ int64_t komodo_priceave(int64_t *buf,int64_t *correlated,int32_t cskip)
|
||||
return((price*7 + halfave*5 + thirdave*3 + fourthave*2 + decayprice + buf[PRICES_DAYWINDOW-1]) / 19);
|
||||
}
|
||||
|
||||
void komodo_pricesinit()
|
||||
int32_t komodo_pricesinit()
|
||||
{
|
||||
static int32_t didinit;
|
||||
int32_t i,createflag = 0;
|
||||
if ( didinit != 0 )
|
||||
return;
|
||||
return(-1);
|
||||
didinit = 1;
|
||||
boost::filesystem::path pricefname,pricesdir = GetDataDir() / "prices";
|
||||
fprintf(stderr,"pricesinit (%s)\n",pricesdir.string().c_str());
|
||||
@@ -2690,6 +2690,8 @@ void komodo_pricesinit()
|
||||
fputc(0,PRICES[0].fp);
|
||||
fflush(PRICES[0].fp);
|
||||
}
|
||||
fprintf(stderr,"pricesinit done\n");
|
||||
return(0);
|
||||
}
|
||||
|
||||
void komodo_pricesupdate(int32_t height,CBlock *pblock)
|
||||
|
||||
@@ -2100,7 +2100,7 @@ void komodo_args(char *argv0)
|
||||
extralen += symbol.size();
|
||||
}
|
||||
}
|
||||
komodo_pricesinit();
|
||||
//komodo_pricesinit();
|
||||
komodo_cbopretupdate(1); // will set Mineropret
|
||||
fprintf(stderr,"This blockchain uses data produced from CoinDesk Bitcoin Price Index\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user