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
We cant ask the operator to prime a number c such that a + c = b where c != 0 because their is an overflow So we have to ensure that a , b , c < 250 bits that way we cannot overlfow. because a_250_bits + b_250_bits can only be 251 bits in total.
In circom
<=
and<=
are not grater than and less than checks they do not create constraints.Therefore https://github.com/barryWhiteHat/RollupNC/blob/master/tokens_transfer/tokens_transfer.circom#L88 checks are not enforced.
We would need to build a circuit to do the
>=
check which would work with binary decomposition.The text was updated successfully, but these errors were encountered: