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
Description createSortitionHash returns $H(round||iteration||step||seed)$, but the specification states it should be $H(seed||round||step||iteration)$.
Logically speaking, the concatenation order should follow round->step->iteration, like in the specification.
Technically speaking, this does not affect correctness/security, as long as all nodes calculate the same hash.
Solutions
There are two options:
Leave the code unchanged and update the specifications accordingly
Adapt the code to the specification
The text was updated successfully, but these errors were encountered:
Description
$H(round||iteration||step||seed)$ , but the specification states it should be $H(seed||round||step||iteration)$ .
createSortitionHash
returnsLogically speaking, the concatenation order should follow round->step->iteration, like in the specification.
Technically speaking, this does not affect correctness/security, as long as all nodes calculate the same hash.
Solutions
There are two options:
The text was updated successfully, but these errors were encountered: