Skip to content

Commit 155fb97

Browse files
committed
Replace critical error to non critical
When the computation of a multi-signature fails because the quorum is not reached.
1 parent 44bbbeb commit 155fb97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mithril-aggregator/src/runtime/state_machine.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ impl AggregatorRuntime {
271271
let multi_signature = self.runner.create_multi_signature().await?;
272272

273273
let multi_signature = if multi_signature.is_none() {
274-
return Err(RuntimeError::Critical {
274+
return Err(RuntimeError::KeepState {
275275
message: "not enough signature yet to aggregate a multi-signature, waiting…"
276276
.to_string(),
277277
nested_error: None,

0 commit comments

Comments
 (0)