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
This is because you have changed the size of the producers. If you used the same number or producers when updating you would see more what you expect. The schedule is a modulus of the producers, so changing the size creates a different index into the schedule according to the time slot.
Say you have an active schedule with 3 proposers:
{"dan"_n,"sam"_n,"pam"_n}
On
sam
's last block, you change the schedule to:{"dan"_n,"sam"_n,"pam"_n,"cam"_n}
The next 12 blocks are produced by
pam
as expected.And then the next block is produced by
sam
??? I would have expectedcam
, ordan
if the transition hadn't taken place.Test case reproducing the issue, which fails on the last
BOOST_REQUIRE
.The text was updated successfully, but these errors were encountered: