@@ -25,8 +25,8 @@ use bitcoin::hashes::hex::{FromHex, ToHex};
25
25
use bitcoin:: hashes:: Hash ;
26
26
use bitcoin:: secp256k1;
27
27
use bitcoin:: {
28
- Address , Amount , PackedLockTime , Network , OutPoint , PrivateKey , Script , EcdsaSighashType , SignedAmount ,
29
- Sequence , Transaction , TxIn , TxOut , Txid , Witness ,
28
+ Address , Amount , EcdsaSighashType , Network , OutPoint , PackedLockTime , PrivateKey , Script ,
29
+ Sequence , SignedAmount , Transaction , TxIn , TxOut , Txid , Witness ,
30
30
} ;
31
31
use bitcoincore_rpc:: bitcoincore_rpc_json:: {
32
32
GetBlockTemplateModes , GetBlockTemplateRules , ScanTxOutRequest ,
@@ -125,8 +125,12 @@ fn main() {
125
125
let rpc_url = format ! ( "{}/wallet/testwallet" , get_rpc_url( ) ) ;
126
126
let auth = get_auth ( ) ;
127
127
128
+ #[ cfg( not( feature = "proxy" ) ) ]
128
129
let cl = Client :: new ( & rpc_url, auth) . unwrap ( ) ;
129
130
131
+ #[ cfg( feature = "proxy" ) ]
132
+ let cl = Client :: new_with_proxy ( & rpc_url, auth, "127.0.0.1:9050" , None ) . unwrap ( ) ;
133
+
130
134
test_get_network_info ( & cl) ;
131
135
unsafe { VERSION = cl. version ( ) . unwrap ( ) } ;
132
136
println ! ( "Version: {}" , version( ) ) ;
0 commit comments