Skip to content

Commit

Permalink
Fix == -> =
Browse files Browse the repository at this point in the history
  • Loading branch information
clesaege committed Jul 28, 2018
1 parent 7541587 commit e5a1ce1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/standard/permission/ArbitrablePermissionList.sol
Original file line number Diff line number Diff line change
Expand Up @@ -313,11 +313,11 @@ contract ArbitrablePermissionList is PermissionInterface, Arbitrable {
item.status = ItemStatus.Cleared;
} else { // Split the balance 50-50 and give the item the initial status.
if (item.status==ItemStatus.Resubmitted)
item.status==ItemStatus.Cleared;
item.status = ItemStatus.Cleared;
else if (item.status==ItemStatus.ClearingRequested)
item.status==ItemStatus.Registered;
item.status = ItemStatus.Registered;
else
item.status==ItemStatus.Absent;
item.status = ItemStatus.Absent;
item.submitter.send(item.balance / 2);
item.challenger.send(item.balance / 2);
}
Expand Down

0 comments on commit e5a1ce1

Please sign in to comment.