0
1
A full node is a node with the whole blockchain and is able to verify any new incoming blocks.
A pruned node, is a node with only some of the blockchain, namely it has removed some of the older blocks due to space requirements. A pruned node cannot validate blocks, as it does not have the full history of the blockchain right? So how can we still say that it is a full node?
Am I also right in saying that they do not serve any value to the network, as any blocks they send out will not be fully validated?
So is it possible to start up the bitcoin network, and download all UTXOs then be classed as a pruned node? Or do i need to first be a full node and then activate pruning mode? In the former, I would not have previously verified the whole blockchain myself – Kyle Graham – 2018-03-20T10:47:08.740
1It is theoretically possible to download all UTXO an be a node. You need to also download all block headers to find out the longest chain. However, in current bitcoin protocol there is no provision to fetch UTXOs, so you need to download all blocks from starting to build the UTXO database or you can copy UTXO from another trusted node. – dark knight – 2018-03-20T11:24:43.843
I understand now. Thanks for the clear and concise answer – Kyle Graham – 2018-03-20T11:52:17.277