Sfoglia il codice sorgente

Fix PR verification

Vecna 1 anno fa
parent
commit
4390716ebf
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      src/positive_report.rs

+ 1 - 1
src/positive_report.rs

@@ -143,7 +143,7 @@ impl PositiveReport {
         let buckets = &bridge_info.buckets;
         let buckets = &bridge_info.buckets;
         let BP = self.lox_proof.BP;
         let BP = self.lox_proof.BP;
         for bucket in buckets {
         for bucket in buckets {
-            if bucket * Htable != BP {
+            if bucket * Htable == BP {
                 return la.handle_positive_report(self.lox_proof, &Htable).is_ok();
                 return la.handle_positive_report(self.lox_proof, &Htable).is_ok();
             }
             }
         }
         }