NOT raw prices, that is just single blocks data

This commit is contained in:
jl777
2019-04-02 01:16:42 -11:00
parent 015d6eee9e
commit b3dcecb706
2 changed files with 5 additions and 3 deletions

View File

@@ -2199,6 +2199,7 @@ char *komodo_pricename(char *name,int32_t ind)
if ( ind < sizeof(Forex)/sizeof(*Forex) )
{
strcpy(name,Forex[ind]);
strcat(name,"USD");
return(name);
} else ind -= sizeof(Forex)/sizeof(*Forex);
}
@@ -2209,6 +2210,7 @@ char *komodo_pricename(char *name,int32_t ind)
if ( ind < sizeof(Cryptos)/sizeof(*Cryptos) )
{
strcpy(name,Cryptos[ind]);
strcat(name,"BTC");
return(name);
} else ind -= sizeof(Cryptos)/sizeof(*Cryptos);
}