Skip to content

Commit b61945b

Browse files
authored
Merge pull request #833 from input-output-hk/jpraynaud/824-fix-critical-error
Fix mislabeled critical error
2 parents 44bbbeb + e6d18ae commit b61945b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-aggregator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-aggregator"
3-
version = "0.2.37"
3+
version = "0.2.38"
44
description = "A Mithril Aggregator server"
55
authors = { workspace = true }
66
edition = { workspace = true }

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)