Skip to content

Commit b9746bc

Browse files
committed
fix(e2e): put back the version of backend cardano-db used to avoid default mecanism
1 parent d7ce977 commit b9746bc

File tree

1 file changed

+6
-3
lines changed
  • mithril-test-lab/mithril-end-to-end/src/mithril

1 file changed

+6
-3
lines changed

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)