this post was submitted on 19 Nov 2023
1 points (100.0% liked)

Ethereum

1 readers
1 users here now

Resources

founded 11 months ago
MODERATORS
 

Verifying a block you need to check each transaction’s signature. Once a block has been accepted by a network and has a couple verified children blocks, those signatures are redundant. Does ethereum discard signatures or preserve them indefinitely?

you are viewing a single comment's thread
view the rest of the comments
[–] uwu2420@alien.top 1 points 10 months ago

They are preserved indefinitely, the entire transaction is stored in the block and removing the signature would invalidate the block’s hash.

In Bitcoin, Segwit was the thing that changed this, but non-Segwit transactions likewise include the signature in the block forever.

It’s not really a problem in Ethereum because the limiting factor on an Ethereum block’s size is gas, not the actual size of the transaction data.