Browse Source

Fix PR verification

Vecna 1 year ago
parent
commit
4390716ebf
1 changed files with 1 additions and 1 deletions
  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 BP = self.lox_proof.BP;
         for bucket in buckets {
-            if bucket * Htable != BP {
+            if bucket * Htable == BP {
                 return la.handle_positive_report(self.lox_proof, &Htable).is_ok();
             }
         }