Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Topic OP
Specifying blockfilterindex in the new getindexinfo RPC
by
windpath
on 10/01/2023, 22:21:19 UTC
⭐ Merited by ETFbitcoin (1)
Anyone know how to specify the block filter index for the new getindexinfo rpc?

Code:
bash-5.0# bitcoin-cli getindexinfo
{
  "txindex": {
    "synced": true,
    "best_block_height": 771336
  },
  "coinstatsindex": {
    "synced": true,
    "best_block_height": 771336
  },
  "basic block filter index": {
    "synced": true,
    "best_block_height": 771336
  }
}
bash-5.0# bitcoin-cli getindexinfo blockfilterindex
{
}
bash-5.0# bitcoin-cli getindexinfo basicblockfilterindex
{
}
bash-5.0# bitcoin-cli getindexinfo txindex
{
  "txindex": {
    "synced": true,
    "best_block_height": 771336
  }