File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments