    function _collectOperationsFromPriorityQueue(uint256 _nPriorityOps) internal returns (bytes32 concatHash) {
        concatHash = EMPTY_STRING_KECCAK;

        for (uint256 i = 0; i < _nPriorityOps; i = i.uncheckedInc()) {
            PriorityOperation memory priorityOp = s.priorityQueue.popFront();
            concatHash = keccak256(abi.encode(concatHash, priorityOp.canonicalTxHash));
        }
    }
        bytes32 reconstructedChainedLogsHash; // defaults to bytes32(0)
        bytes32 reconstructedChainedMessagesHash; // defaults to bytes32(0)
        bytes32 reconstructedChainedL1BytecodesRevealDataHash; // defaults to bytes32(0)
        /// Clear logs state
chainedLogsHash = bytes32(0);
numberOfLogsToProcess = 0;
chainedMessagesHash = bytes32(0);
chainedL1BytecodesRevealDataHash = bytes32(0);
        currentL2BlockTxsRollingHash = bytes32(0);
