Starting the ordinals service does not work when when started from scratch (i.e., with empty dbs). Specifically, running ``` bitcoin-indexer ordinals service start --config-path Indexer.toml ``` results in a panic here https://github.com/hirosystems/bitcoin-indexer/blob/d3588f30cc9bb6a59e6eabd0faa75178620cff8b/components/ordinals/src/lib.rs#L208 due to the `chain_tip` table being empty. I tried to manually insert the genesis block as the chain tip. This avoids the above issue but then fails to read a file `tmp/hord.rocksdb/CURRENT`
Starting the ordinals service does not work when when started from scratch (i.e., with empty dbs).
Specifically, running
results in a panic here
bitcoin-indexer/components/ordinals/src/lib.rs
Line 208 in d3588f3
chain_tiptable being empty.I tried to manually insert the genesis block as the chain tip. This avoids the above issue but then fails to read a file
tmp/hord.rocksdb/CURRENT