File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ pub(crate) fn setup_bitcoind_and_electrsd() -> (BitcoinD, ElectrsD) {
179179 let mut bitcoind_conf = corepc_node:: Conf :: default ( ) ;
180180 bitcoind_conf. network = "regtest" ;
181181 bitcoind_conf. args . push ( "-rest" ) ;
182+ bitcoind_conf. view_stdout = true ;
182183 let bitcoind = BitcoinD :: with_conf ( bitcoind_exe, & bitcoind_conf) . unwrap ( ) ;
183184
184185 let electrs_exe = env:: var ( "ELECTRS_EXE" )
@@ -188,6 +189,7 @@ pub(crate) fn setup_bitcoind_and_electrsd() -> (BitcoinD, ElectrsD) {
188189 let mut electrsd_conf = electrsd:: Conf :: default ( ) ;
189190 electrsd_conf. http_enabled = true ;
190191 electrsd_conf. network = "regtest" ;
192+ electrsd_conf. view_stderr = true ;
191193 let electrsd = ElectrsD :: with_conf ( electrs_exe, & bitcoind, & electrsd_conf) . unwrap ( ) ;
192194 ( bitcoind, electrsd)
193195}
You can’t perform that action at this time.
0 commit comments