TLDR: where can bitcoin.conf
be found on Mac running Bitcoin Core v25?
Context:
I have Bitcoin Core v25 on Mac and run into a "Error: Prune mode is incompatible with -txindex" when opening the Application. Before closing the app, I had set the a parameter txindex=1
in bitcoin.conf
using the GUI, as well as selecting pruning.
Now that I cannot access the GUI because of the error message, I'm unclear how to work around this issue.
I've looked at past posts and it isn't clear where bitcoin.conf
lives on Mac.
I've checked the files in /Applications/Bitcoin-Qt.app/Contents
.
I was following the guideline from the Inscriptions Ordinals handbook: https://docs.ordinals.com/guides/inscriptions.html
find / -name "bitcoin.conf" 2>/dev/null
and found 2 files withbitcoin.conf
. After editing them to remove thetxindex
parameter, the Bitcoin Core Application is still returning the issue. – Will D May 28 '23 at 18:46sudo grep -ri txindex / &> /Users/.../Desktop/list
– Mercedes May 30 '23 at 14:48