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
- epoch start block = 1000
- epoch end block = 3000
then we halve the epoch length. so now it will be
let newEndBlock = 1000 + 1000
if (3000 != 2000) {
epoch.endBlock = 2000
epoch.save()
}
but if we double the epoch length we get
let newEndBlock = 1000 + 4000
if (3000 != 5000) {
epoch.endBlock = 5000
epoch.save()
}
The text was updated successfully, but these errors were encountered:
#107 (comment)
The text was updated successfully, but these errors were encountered: