This commit is contained in:
Sarah Jamie Lewis 2018-07-09 19:22:11 -07:00
parent 51f804aed9
commit 0fb4115c5f
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@ In order to have secure transactions between parties, each party must be aware o
Proof-of-Work blockchains solve this security of global state problem through mining (or rather, through the computational power required to produce valid blocks). An adversary can't doublespend without investing considerable resources to acquire the computational power required to produce valid blocks faster than the rest of the network.
The tradeoff proof-of-work blockchains make for this secure decentralization, is necessarily against scalability. Mining blocks is computationally expensive and takes time. The transactions per second is therefore tightly bound to the size of blocks produces and the rate at which they are produced.
The tradeoff proof-of-work blockchains make for this secure decentralization, is necessarily against scalability. Mining blocks is computationally expensive and takes time. The transactions per second is therefore tightly bound to the size of the produced blocks and the rate at which they are produced.
Any alternative system must provide a mechanism for achieving secure global state (and further, they must do so in a way that is more efficient than a proof-of-work blockchain)
Any alternative system must provide a mechanism for achieving secure global state (and further, they must do so in a way that is more efficient than a proof-of-work blockchain).
And there we hit the crux of my issue with the new generation of distributed ledger structures, they all fundamentally fail to achieve the above.