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
In several places, we pass epoch=0 and then rely on things like version >= Epochs::VERSION to decide on whether or not we use it.
Version itself is not always available, e.g. when calculating commitments. To resolve this, make places which are incapable of deciding whether or not epochs are enabled take Option instead of Epoch. Work backwards until ambiguity is resolved.
The text was updated successfully, but these errors were encountered:
In several places, we pass epoch=0 and then rely on things like version >= Epochs::VERSION to decide on whether or not we use it.
Version itself is not always available, e.g. when calculating commitments. To resolve this, make places which are incapable of deciding whether or not epochs are enabled take Option instead of Epoch. Work backwards until ambiguity is resolved.
The text was updated successfully, but these errors were encountered: