Skip to content

Commit 92e1208

Browse files
committed
vss test logging
1 parent 00a3bdb commit 92e1208

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/integration_tests_vss.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ fn channel_full_cycle_with_vss_store() {
1818
println!("== Node A ==");
1919
let esplora_url = format!("http://{}", electrsd.esplora_url.as_ref().unwrap());
2020
let config_a = common::random_config(true, "node_a".to_string());
21-
let mut builder_a = Builder::from_config(config_a.node_config);
21+
let mut builder_a = Builder::from_config(config_a.node_config.clone());
2222
builder_a.set_chain_source_esplora(esplora_url.clone(), None);
23+
crate::common::set_builder_log_writer(&mut builder_a, &config_a);
24+
2325
let vss_base_url = std::env::var("TEST_VSS_BASE_URL").unwrap();
2426
let node_a = builder_a
2527
.build_with_vss_store_and_fixed_headers(
@@ -32,8 +34,10 @@ fn channel_full_cycle_with_vss_store() {
3234

3335
println!("\n== Node B ==");
3436
let config_b = common::random_config(true, "node_b".to_string());
35-
let mut builder_b = Builder::from_config(config_b.node_config);
37+
let mut builder_b = Builder::from_config(config_b.node_config.clone());
3638
builder_b.set_chain_source_esplora(esplora_url.clone(), None);
39+
crate::common::set_builder_log_writer(&mut builder_b, &config_b);
40+
3741
let node_b = builder_b
3842
.build_with_vss_store_and_fixed_headers(
3943
vss_base_url,

0 commit comments

Comments
 (0)