Is it possible to mine empty block without downloading entire blockchain?

2

1

As far as I can understand, whole blockchain is required for verifying and discarding double-spend transactions. Also, mining empty block is accepted by bitcoin's blockchain protocol.

When we want to mine empty block, we don't need to validate transactions, because there are no transactions (except block reward) in our empty block. Is it mean, we don't need to download entire blockchain for mining empty block?

thisiselgun

Posted 2017-12-31T09:02:05.987

Reputation: 23

I'm not 100% sure but I think, you are right. The only element you need from the blockchain in this case is the hash of the previous block.ndsvw 2017-12-31T12:19:07.527

Answers

2

Yes. The only things you need to create a block are:

  1. Hash of topmost block
  2. It's height

amaclin

Posted 2017-12-31T09:02:05.987

Reputation: 5 763