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 9af3a2b commit b29cf19Copy full SHA for b29cf19
src/config/test_case.rs
@@ -9,6 +9,7 @@ pub struct TestCaseEnv {
9
pub sequencer: Vec<(&'static str, &'static str)>,
10
pub prover: Vec<(&'static str, &'static str)>,
11
pub bitcoin: Vec<(&'static str, &'static str)>,
12
+ pub bridge_backend: Vec<(&'static str, &'static str)>,
13
}
14
15
impl TestCaseEnv {
@@ -36,6 +37,10 @@ impl TestCaseEnv {
36
37
pub fn bitcoin(&self) -> Vec<(&'static str, &'static str)> {
38
[self.test_env(), self.bitcoin.clone()].concat()
39
40
+
41
+ pub fn bridge_backend(&self) -> Vec<(&'static str, &'static str)> {
42
+ [self.test_env(), self.bridge_backend.clone()].concat()
43
+ }
44
45
46
#[derive(Clone)]
0 commit comments