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) {
179
179
let mut bitcoind_conf = corepc_node:: Conf :: default ( ) ;
180
180
bitcoind_conf. network = "regtest" ;
181
181
bitcoind_conf. args . push ( "-rest" ) ;
182
+ bitcoind_conf. view_stdout = true ;
182
183
let bitcoind = BitcoinD :: with_conf ( bitcoind_exe, & bitcoind_conf) . unwrap ( ) ;
183
184
184
185
let electrs_exe = env:: var ( "ELECTRS_EXE" )
@@ -188,6 +189,7 @@ pub(crate) fn setup_bitcoind_and_electrsd() -> (BitcoinD, ElectrsD) {
188
189
let mut electrsd_conf = electrsd:: Conf :: default ( ) ;
189
190
electrsd_conf. http_enabled = true ;
190
191
electrsd_conf. network = "regtest" ;
192
+ electrsd_conf. view_stderr = true ;
191
193
let electrsd = ElectrsD :: with_conf ( electrs_exe, & bitcoind, & electrsd_conf) . unwrap ( ) ;
192
194
( bitcoind, electrsd)
193
195
}
You can’t perform that action at this time.
0 commit comments