Txindex=1: how to recognise the blockchain with this option?

1

This might be a dumb question: I started the Bitcoin daemon for an initial blockchain download. It immediately started downloading, I edited the Bitcoin.conf file with txindex=1. Stopped and restarted the daemon. How can I be sure the blockchain has txindex=1 correctly set? Should I reminded with the command line Bitcoind -reindex

How can I understand “looking” at a blockchain (day I downloaded from a torrent) that has txindex=1? Thanks

Carl

Posted 2018-12-07T20:17:25.630

Reputation: 11

Answers

0

You can check the debug logs (might require -debug flag) and see if it is indexing transactions:

$ tail -f ~/.bitcoin/debug.log

You can also try to get a transaction by txid, and if it returns transaction data, then the blockchain has been indexed for transactions (might have to wait for sync to complete):

$ bitcoin-cli getrawtransaction {txid}

JBaczuk

Posted 2018-12-07T20:17:25.630

Reputation: 6 172

Will this ensure that the txindex contains all transactions, even those from blocks that were downloaded before -txindex was enabled?Nate Eldredge 2018-12-08T16:35:12.660