0 votes
in BlockChain by
In what way verifiers check that if a block is valid?

1 Answer

0 votes
by

Every full node on the network verifies the block. Whenever a new block is announced, every node that receives it creates a list of checks among which the two most important checks are of:

  • Proof of work (if a block gives sufficient work to be included in the chain)
  • The validity of all the transactions (each transaction must be valid)
...