Skip to content

Commit

Permalink
Merge branch 'dvush-new-sc' of github.com:matter-labs/zksync-dev into…
Browse files Browse the repository at this point in the history
… dvush-new-sc
  • Loading branch information
dvush committed Nov 27, 2020
2 parents 4001eeb + 14e1a11 commit 0e33f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/contracts/ZkSync.sol
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ contract ZkSync is UpgradeableMaster, Storage, Config, Events, ReentrancyGuard {
totalBlocksCommitted += uint32(_newBlocksData.length);

totalCommittedPriorityRequests += committedPriorityRequests;
require(totalCommittedPriorityRequests <= totalOpenPriorityRequests, "fck11");
require(totalCommittedPriorityRequests <= totalOpenPriorityRequests, "fck12");
}

/// @dev 1. Try to send token to _recipients
Expand Down

0 comments on commit 0e33f87

Please sign in to comment.