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
Currently on mainnet the EpochSyncProof is 42MB. We need to reduce this.
One option is to compress. It is possibly very compressible due to the list of validators repeating a lot.
Another option is to chunk it, but this is more complex.
The text was updated successfully, but these errors were encountered:
Closes#11933
This compresses the EpochSyncProof similar to how we compressed
ChunkStateWitness. In fact, the code is refactored out to a
CompressedData trait so we don't duplicate this code.
Currently on mainnet the EpochSyncProof is 42MB. We need to reduce this.
One option is to compress. It is possibly very compressible due to the list of validators repeating a lot.
Another option is to chunk it, but this is more complex.
The text was updated successfully, but these errors were encountered: