0
I want to install a Pruned Bitcoin node with limited connections. I will be connecting to it with JSON-RPC to interface with my web application. What happens when I want to fetch information about an address that is not in my pruned blockchain on my node? Can someone explain this to me?
I was under the impression that if I was looking up a transaction that was not in my local blockchain, my node would fetch the transaction from another node and return it to me? – Nelson101 – 2017-03-07T22:47:28.247
@Nelson101: That's actually a good question. Clearly, if you are looking for a specific transaction it would work that way (you just request it by it's txid). However, when you try to look up all activity of an address, I don't think that full nodes would do this by default, but it could work of course. They wouldn't by default, because it tells the node they ask what addresses exactly one is interested in. Actually, that would be a good follow-up question. – Murch – 2017-03-08T06:15:28.390