We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6812a11 commit 4bc6300Copy full SHA for 4bc6300
integration_test/src/main.rs
@@ -1264,10 +1264,12 @@ fn test_getblocktemplate(cl: &Client) {
1264
}
1265
1266
fn test_get_index_info(cl: &Client) {
1267
- let gii = cl.get_index_info().unwrap();
1268
- assert!(gii.txindex.is_some());
1269
- assert!(gii.coinstatsindex.is_none());
1270
- assert!(gii.basic_block_filter_index.is_some());
+ if version() >= 210000 {
+ let gii = cl.get_index_info().unwrap();
+ assert!(gii.txindex.is_some());
+ assert!(gii.coinstatsindex.is_none());
1271
+ assert!(gii.basic_block_filter_index.is_some());
1272
+ }
1273
1274
1275
fn test_stop(cl: Client) {
0 commit comments