From bc2b6b691a563c10a893df4073409b28750b77d2 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sat, 26 Nov 2016 20:35:56 -0300 Subject: [PATCH] test --- src/komodo_gateway.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/komodo_gateway.h b/src/komodo_gateway.h index 44c15101b..1ee234451 100644 --- a/src/komodo_gateway.h +++ b/src/komodo_gateway.h @@ -498,8 +498,8 @@ int32_t komodo_paxcmp(uint64_t value,uint64_t checkvalue,uint64_t seed) int32_t ratio; if ( seed == 0 ) { - ratio = ((value << 8) / checkvalue); - if ( ratio >= 255 && ratio <= 257 ) + ratio = ((value << 6) / checkvalue); + if ( ratio >= 63 && ratio <= 65 ) return(0); else {