Due to reputation limitations, I cannot ask for an update on this question:
How much extra disk space does txindex=1 require?
What is the current size of the txindex folder when txindex=1 is set in the bitcoin.conf file on a fully synced full node? As pointed out in the referenced post, the size should now be around 28GB?
Thanks!
-txindex
and-prune
are exclusive, only one of the two may be active at the same time.-txindex
is inactive by default, and your folder size is smaller because you don't have a complete transaction index. – Murch Jun 17 '20 at 01:48txindex
builds a complete transaction index which is 27 GB. This is incompatible with running a pruned node. Your node is running in pruned mode, so it cannot be running with a txindex at the same time. I'm not sure whether the index folder of a pruned node would be smaller than that of an archival node that doesn't build a transaction index. – Murch Jun 17 '20 at 16:37