0
I am reading this and now wondering why the blockchain isn't just implemented as a Merkle tree, or the reverse, why you can't just have a single data structure (i.e. a transaction chain) instead of the block chain with nested Merkle tree of transactions.
It seems to me the block is just there to make the merkle tree work, since it requires bottom-up calculation and doesn't support appending to the tree very well, so instead you want to create a small compact tree and group it into blocks. Please correct if wrong.
– Lance Pollard – 2019-02-17T20:50:52.253Don't understand why you need to "prove that a specific transaction is included in a block". – Lance Pollard – 2019-02-17T20:51:33.737