Skip to content

Commit c79713d

Browse files
authored
Merge pull request #2731 from input-output-hk/ctl/2730-fix-backward-compatibility-test-backend-v2
Fix backward compatibilty issues
2 parents d7ce977 + 0a8945f commit c79713d

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-common/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-common"
3-
version = "0.6.20"
3+
version = "0.6.21"
44
description = "Common types, interfaces, and utilities for Mithril nodes."
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-common/src/messages/aggregator_features.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ pub struct AggregatorCapabilities {
2626
pub signed_entity_types: BTreeSet<SignedEntityTypeDiscriminants>,
2727

2828
/// Aggregate signature type used by the aggregator
29+
#[serde(default)]
2930
pub aggregate_signature_type: AggregateSignatureType,
3031

3132
/// Cardano transactions prover capabilities

mithril-test-lab/mithril-end-to-end/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-end-to-end"
3-
version = "0.4.104"
3+
version = "0.4.105"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
documentation = { workspace = true }

mithril-test-lab/mithril-end-to-end/src/mithril/client.rs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,12 @@ impl ClientCommand {
220220
ClientCommand::CardanoStakeDistribution(cmd) => {
221221
[vec!["cardano-stake-distribution".to_string()], cmd.cli_arg()].concat()
222222
}
223-
ClientCommand::CardanoDbV2(cmd) => {
224-
[vec!["cardano-db".to_string()], cmd.cli_arg()].concat()
225-
}
223+
ClientCommand::CardanoDbV2(cmd) => [
224+
vec!["cardano-db".to_string()],
225+
cmd.cli_arg(),
226+
vec!["--backend".to_string(), "v2".to_string()],
227+
]
228+
.concat(),
226229
};
227230
args.push("--json".to_string());
228231

0 commit comments

Comments
 (0)