You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a value is 0, 32 bytes worth of 0s are stored. This is very wasteful and could be improved by adding a special encoding to strip them out if it's worth it.
It needs to be assessed at serialization time if using e.g. rlp or rle saves space by counting zeros while serializing the leaves, and then choosing the methods: if there are more zeros than leaves, it's worth using rle.
The text was updated successfully, but these errors were encountered:
When a value is 0, 32 bytes worth of 0s are stored. This is very wasteful and could be improved by adding a special encoding to strip them out if it's worth it.
It needs to be assessed at serialization time if using e.g. rlp or rle saves space by counting zeros while serializing the leaves, and then choosing the methods: if there are more zeros than leaves, it's worth using rle.
The text was updated successfully, but these errors were encountered: