0
I am building a web app that implements bitcoin payments. My server has limited resources, and I don't want to fill up it's data with the ENTIRE blockchain (takes up too much space).
So I enabled pruning on bitcoind, and ran:
bitcoind -daemon -txindex
I got the error:
Error: Prune mode is incompatible with -txindex.
Is it not possible to verify any TXID I want with a pruned node? Is my only option to depend on a third party if I don't want to store the entire blockchain? Thanks.
D'oh! I'm not sure why I forgot pruned nodes can still verify payments received to it's own wallet. Thanks. – 2523454 – 2018-02-05T22:18:04.660
1Not just to its own wallet, full nodes (including pruned ones) verify all payments, ever. That doesn't mean you can query them. – Pieter Wuille – 2018-02-06T18:16:57.063