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
Copy file name to clipboardexpand all lines: contracts/l2.sol
+7-7
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ contract L2 is SignatureChecker {
38
38
// `batches` is used to record the fact that tickets with nonce between startingNonce and startingNonce + numTickets-1 are authorized, claimed or refunded.
39
39
// Indexed by nonce
40
40
mapping(uint256=> Batch) batches;
41
-
uint256nextNonceToAuthorize=0;
41
+
uint256nextBatchStart=0;
42
42
43
43
function depositOnL2(L2Deposit calldatadeposit) publicpayable {
44
44
uint256 amountAvailable = deposit.trustedAmount;
@@ -81,7 +81,7 @@ contract L2 is SignatureChecker {
0 commit comments