|
|
|
|
|
by jl2718
1888 days ago
|
|
Perhaps it’s important to remind ourselves of the purposes of Ethereum and Bitcoin transaction fees. Bitcoin stores state in UTXOs, so transaction fees are paid for block space, and scrypt removed the loops and recursions to prevent a DOS attack. Ethereum is a memory state machine, so the fee is mostly for the expansion of that state, and additionally enables loops and recursion while using gas as DOS protection. In both cases, the actual processing cost is hardly relevant, and poorly implemented. I don’t doubt the utility of a blockchain based on computationally-relevant gas, but that would probably be a different type of project. |
|