Skip to content

Commit

Permalink
Remove unused function (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless authored Jan 9, 2024
1 parent f1596c6 commit 873d925
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions ethereum/contracts/zksync/facets/Executor.sol
Original file line number Diff line number Diff line change
Expand Up @@ -410,11 +410,6 @@ contract ExecutorFacet is Base, IExecutor {
emit BlocksRevert(s.totalBatchesCommitted, s.totalBatchesVerified, s.totalBatchesExecuted);
}

/// @notice Returns larger of two values
function _maxU256(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? b : a;
}

/// @dev Creates batch commitment from its data
function _createBatchCommitment(
CommitBatchInfo calldata _newBatchData,
Expand Down

0 comments on commit 873d925

Please sign in to comment.