Skip to content

Commit

Permalink
Merge pull request #833 from input-output-hk/jpraynaud/824-fix-critic…
Browse files Browse the repository at this point in the history
…al-error

Fix mislabeled critical error
  • Loading branch information
jpraynaud committed Mar 27, 2023
2 parents 44bbbeb + e6d18ae commit b61945b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mithril-aggregator/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mithril-aggregator"
version = "0.2.37"
version = "0.2.38"
description = "A Mithril Aggregator server"
authors = { workspace = true }
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion mithril-aggregator/src/runtime/state_machine.rs
Expand Up @@ -271,7 +271,7 @@ impl AggregatorRuntime {
let multi_signature = self.runner.create_multi_signature().await?;

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

0 comments on commit b61945b

Please sign in to comment.