Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(tee_verifier): speedup SQL query for new jobs #3133

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions core/lib/dal/src/tee_proof_generation_dal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@ impl TeeProofGenerationDal<'_, '_> {
p.l1_batch_number
FROM
proof_generation_details p
LEFT JOIN
l1_batches l1
ON p.l1_batch_number = l1.number
LEFT JOIN
tee_proof_generation_details tee
ON
Expand All @@ -56,9 +53,6 @@ impl TeeProofGenerationDal<'_, '_> {
p.l1_batch_number >= $5
AND p.vm_run_data_blob_url IS NOT NULL
AND p.proof_gen_data_blob_url IS NOT NULL
AND l1.hash IS NOT NULL
AND l1.aux_data_hash IS NOT NULL
AND l1.meta_parameters_hash IS NOT NULL
)
AND (
tee.l1_batch_number IS NULL
Expand Down
Loading