From 79962cb77de056273d71968268b39581ca5de703 Mon Sep 17 00:00:00 2001 From: Steph Sinyakov Date: Mon, 19 Aug 2024 12:24:37 +0200 Subject: [PATCH] fix: review fixes [ci skip] --- core/lib/via_btc_client/src/indexer/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/via_btc_client/src/indexer/mod.rs b/core/lib/via_btc_client/src/indexer/mod.rs index 3110cc7bd316..8647846018cb 100644 --- a/core/lib/via_btc_client/src/indexer/mod.rs +++ b/core/lib/via_btc_client/src/indexer/mod.rs @@ -53,7 +53,7 @@ impl BootstrapState { .values() .filter(|&v| *v == Vote::Ok) .count(); - positive_votes * 2 > total_votes + positive_votes * 2 > total_votes && total_votes == self.verifier_addresses.len() } }