diff --git a/src/komodo_pax.h b/src/komodo_pax.h index 7861b4bf9..9e05573de 100644 --- a/src/komodo_pax.h +++ b/src/komodo_pax.h @@ -548,7 +548,7 @@ uint64_t _komodo_paxpriceB(uint64_t seed,int32_t height,char *base,char *rel,uin uint64_t komodo_paxpriceB(uint64_t seed,int32_t height,char *base,char *rel,uint64_t basevolume) { uint64_t baseusd,basekmd,usdkmd; int32_t baseid = komodo_baseid(base); - if ( strcmp(rel,"KMD") == 0 && strcmp("RUB",base) != 0 ) + if ( strcmp(rel,"KMD") == 0 && (strcmp("RUB",base) == 0 || strcmp("INR",base) == 0) ) { baseusd = _komodo_paxpriceB(seed,height,base,(char *)"USD",SATOSHIDEN); usdkmd = _komodo_paxpriceB(seed,height,(char *)"USD",(char *)"KMD",SATOSHIDEN);