We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7ce977 commit b9746bcCopy full SHA for b9746bc
mithril-test-lab/mithril-end-to-end/src/mithril/client.rs
@@ -220,9 +220,12 @@ impl ClientCommand {
220
ClientCommand::CardanoStakeDistribution(cmd) => {
221
[vec!["cardano-stake-distribution".to_string()], cmd.cli_arg()].concat()
222
}
223
- ClientCommand::CardanoDbV2(cmd) => {
224
- [vec!["cardano-db".to_string()], cmd.cli_arg()].concat()
225
- }
+ ClientCommand::CardanoDbV2(cmd) => [
+ vec!["cardano-db".to_string()],
+ cmd.cli_arg(),
226
+ vec!["--backend".to_string(), "v2".to_string()],
227
+ ]
228
+ .concat(),
229
};
230
args.push("--json".to_string());
231
0 commit comments