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
{{ message }}
This repository has been archived by the owner on May 16, 2018. It is now read-only.
The rules are evaluated sequentially. If two rules are evaluated to "true" during the same round, the second one will potentially be evaluated on an inconsistant network state (because the first action will be taken). In the majority of the cases, this behaviour will cause no harm because there is no impact of action 1 on rule 2.
To avoid potential bugs, the evaluation of the rules and application of the actions should be done differently :
First, evaluate all the rules but apply none of the actions
Then, apply all the actions associated with the rules evaluated to "true"
The text was updated successfully, but these errors were encountered:
The rules are evaluated sequentially. If two rules are evaluated to "true" during the same round, the second one will potentially be evaluated on an inconsistant network state (because the first action will be taken). In the majority of the cases, this behaviour will cause no harm because there is no impact of action 1 on rule 2.
To avoid potential bugs, the evaluation of the rules and application of the actions should be done differently :
The text was updated successfully, but these errors were encountered: