Bugfix: IsRelevantToMe_p adjustment for P_latest.upi == []
This commit is contained in:
parent
b4f8bc8058
commit
7bf1132142
1 changed files with 5 additions and 0 deletions
|
@ -1522,6 +1522,11 @@ react_to_env_B10(Retries, P_newprop, P_latest, LatestUnanimousP, P_current_calc,
|
|||
I_am_in_P_latest_repairing = lists:member(MyName, P_latest_repairing),
|
||||
IsRelevantToMe_p = if P_latest_author == MyName ->
|
||||
true;
|
||||
P_latest_upi == [] ->
|
||||
%% If we're here, P_latest's author is not me.
|
||||
%% If someone else suggests upi=[], it's not
|
||||
%% relevant to me.
|
||||
false;
|
||||
not (I_am_in_P_latest_upi
|
||||
orelse I_am_in_P_latest_repairing) ->
|
||||
%% There is no sense for me to leave whatever
|
||||
|
|
Loading…
Reference in a new issue