diff --git a/src/party.rs b/src/party.rs index 7e78c8a..bf2390c 100644 --- a/src/party.rs +++ b/src/party.rs @@ -207,7 +207,7 @@ impl> Party { /// # Returns /// - `true` if the ballot is currently active; `false` otherwise. pub fn is_launched(&self) -> bool { - !self.is_stopped() + !(self.is_stopped() || self.status == PartyStatus::None) } /// Checks if the ballot process has been stopped.