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
Plasma exit queue is the queue of tuples (uint hash, uint SFT, address next) ordered by SFT.
We need to construct the queue with last element border (tail element's SFT is infinity) and first element border (first element's SFT is zero) and the following methods:
function _insert(addressposBefore, uinthash, uintSFT) privatereturns (bool);
function _remove(addressposBefore, addressposCurrent) privatereturns (bool);
The contract must check that the queue is still sorted after element insertion complete.
The text was updated successfully, but these errors were encountered:
Plasma exit queue is the queue of tuples (uint hash, uint SFT, address next) ordered by SFT.
We need to construct the queue with last element border (tail element's SFT is infinity) and first element border (first element's SFT is zero) and the following methods:
The contract must check that the queue is still sorted after element insertion complete.
The text was updated successfully, but these errors were encountered: