|
|
@ -70,9 +70,11 @@ uint64_t instantdex_basebits(char *base) |
|
|
|
|
|
|
|
int32_t instantdex_orderidcmp(uint64_t orderidA,uint64_t orderidB,int32_t strictflag) |
|
|
|
{ |
|
|
|
printf("orderidA %llx vs orderidB %llx -> ",(long long)orderidA,(long long)orderidB); |
|
|
|
orderidA ^= orderidB; |
|
|
|
if ( strictflag == 0 ) |
|
|
|
orderidA &= INSTANTDEX_ORDERSTATE_ORDERIDMASK; |
|
|
|
printf("%llx, strict.%d\n",(long long)orderidA,strictflag); |
|
|
|
return(orderidA != 0); |
|
|
|
} |
|
|
|
|
|
|
|