LoopringSecondary / protocol

Loopring Protocol Smart Contract on Ethereum

Home Page:https://loopring.github.io/protocol

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ringIndex calculation bug

dong77 opened this issue · comments

ringIndex = ringIndex ^ ENTERED_MASK + 1; should be
ringIndex = (ringIndex ^ ENTERED_MASK) + 1;

fixed