Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
koloz193 committed Jun 10, 2024
1 parent 4e8797e commit be6176d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion gas-bound-caller/contracts/GasBoundCallerErrors.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ pragma solidity ^0.8.20;
error MaxGasLessThanGasLeft();
// 0xb2017838
error PubdataAllowanceAndGasLeftLessThanPubdataGasAndOverhead();

Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ contract ExecutorFacet is ZkSyncHyperchainBase, IExecutor {
bytes32[] memory blobCommitments = new bytes32[](MAX_NUMBER_OF_BLOBS);
if (pricingMode == PubdataPricingMode.Validium) {
// skipping data validation for validium, we just check that the data is empty
if (logOutput.pubdataHash != 0x00) {
revert InvalidHash();
}
if (_newBatch.pubdataCommitments.length != 1) {
revert CalldataLengthTooBig();
}
Expand Down

0 comments on commit be6176d

Please sign in to comment.