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
Spark range proofs are verified in batches. To do this, the verifier sets up two large vectors, one for scalars and the other for group elements, for use in a single multiscalar multiplication operation.
However, these vectors don't have their sizes reserved in advance. This means there is likely a fair amount of unnecessary reallocation as elements are pushed.
The solution is to reserve the correct number of elements for each vector.
The text was updated successfully, but these errors were encountered:
Spark range proofs are verified in batches. To do this, the verifier sets up two large vectors, one for scalars and the other for group elements, for use in a single multiscalar multiplication operation.
However, these vectors don't have their sizes reserved in advance. This means there is likely a fair amount of unnecessary reallocation as elements are pushed.
The solution is to reserve the correct number of elements for each vector.
The text was updated successfully, but these errors were encountered: