This repository was archived by the owner on Nov 25, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 4747 " 0.20.0" ,
4848 " 0.20.1" ,
4949 " 0.21.0" ,
50+ " 22.0" ,
51+ " 23.0" ,
5052 ]
5153 steps :
5254 - name : Checkout Crate
Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ The following versions are officially supported and automatically tested:
4545* 0.20.0
4646* 0.20.1
4747* 0.21.0
48+ * 22.0
49+ * 23.0
4850
4951# Minimum Supported Rust Version (MSRV)
5052This library should always compile with any combination of features on ** Rust 1.41.1** .
Original file line number Diff line number Diff line change @@ -28,7 +28,12 @@ if bitcoind -version | grep -q "v0\.2"; then
2828 FALLBACKFEEARG=" -fallbackfee=0.00001000"
2929fi
3030
31- bitcoind -regtest $BLOCKFILTERARG $FALLBACKFEEARG \
31+ COINSTATSINDEXARG=" "
32+ if bitcoind -version | grep -q " v[2-9]" ; then
33+ COINSTATSINDEXARG=" -coinstatsindex=1"
34+ fi
35+
36+ bitcoind -regtest $BLOCKFILTERARG $FALLBACKFEEARG $COINSTATSINDEXARG \
3237 -datadir=${TESTDIR} /2 \
3338 -connect=127.0.0.1:12348 \
3439 -rpcport=12349 \
Original file line number Diff line number Diff line change @@ -1174,7 +1174,11 @@ fn test_create_wallet(cl: &Client) {
11741174}
11751175
11761176fn test_get_tx_out_set_info ( cl : & Client ) {
1177- cl. get_tx_out_set_info ( None , None , None ) . unwrap ( ) ;
1177+ if version ( ) >= 220000 {
1178+ cl. get_tx_out_set_info ( Some ( json:: TxOutSetHashType :: Muhash ) , None , Some ( true ) ) . unwrap ( ) ;
1179+ } else {
1180+ cl. get_tx_out_set_info ( None , None , None ) . unwrap ( ) ;
1181+ }
11781182}
11791183
11801184fn test_get_chain_tips ( cl : & Client ) {
You can’t perform that action at this time.
0 commit comments