From 89e71c5d181685f6a48b45df4e40a461845c6064 Mon Sep 17 00:00:00 2001 From: Kobi Gurkan Date: Tue, 7 Apr 2020 21:17:30 +0300 Subject: [PATCH] adds missing return --- powersoftau/src/batched_accumulator.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/powersoftau/src/batched_accumulator.rs b/powersoftau/src/batched_accumulator.rs index 8751fd5..2f86b5c 100644 --- a/powersoftau/src/batched_accumulator.rs +++ b/powersoftau/src/batched_accumulator.rs @@ -535,6 +535,7 @@ impl<'a, E: Engine> BatchedAccumulator<'a, E> { (tau_powers_g2_0, tau_powers_g2_1), ) { error!("Invalid ratio power_pairs(&after.tau_powers_g1), (tau_powers_g2_0, tau_powers_g2_1) in TauG1 contribution intersection"); + return false; } true }