From 1d19bf5dded6024db3b84b839248ea324d3c836c Mon Sep 17 00:00:00 2001 From: jl777 Date: Sat, 26 Nov 2016 20:26:28 -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 1cdf7c2bb..44c15101b 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 << 10) / checkvalue); - if ( ratio >= 1023 && ratio <= 1025 ) + ratio = ((value << 8) / checkvalue); + if ( ratio >= 255 && ratio <= 257 ) return(0); else {