Transaction validation by full nodes

0

All the full nodes in Bitcoin network validate a new block as soon as it is mined and propagated on the network, by verifying the nonce and the resulting block hash. Now the question is that, Do full nodes validate each transaction in the Block, based on its complete history of input and outputs to check for any error?

Imran Makhdoom

Posted 2017-08-01T03:51:52.877

Reputation: 125

Answers

0

Yes, all transactions in every block are verified by full nodes. Nodes do not have to traverse the full history though, because they would have already validated the parent transactions before the child block is received usually. So they can just make sure the new transaction is valid in the ways it needs to be.

MeshCollider

Posted 2017-08-01T03:51:52.877

Reputation: 8 735