Moved the location of the "||"

This commit is contained in:
Denton Liu 2016-05-06 09:40:05 -04:00
parent ffade949de
commit 961eb53f41

View File

@ -400,9 +400,9 @@ high or low invalid bids.
{
uint length = bids[msg.sender].length;
if (
_values.length != length
|| _fake.length != length
|| _secret.length != length
_values.length != length ||
_fake.length != length ||
_secret.length != length
) {
throw;
}