Skip to content

Commit

Permalink
Fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
IAvecilla committed Sep 19, 2024
1 parent 7608ace commit ed97d24
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/guides/external-node/00_quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ The HTTP JSON-RPC API can be accessed on port `3060` and WebSocket API can be ac
> [!NOTE]
>
> To stop historical DB growth, you can enable DB pruning by uncommenting `EN_PRUNING_ENABLED: true` in docker compose file,
> you can read more about pruning in
> To stop historical DB growth, you can enable DB pruning by uncommenting `EN_PRUNING_ENABLED: true` in docker compose
> file, you can read more about pruning in
> [08_pruning.md](https://github.com/matter-labs/zksync-era/blob/main/docs/guides/external-node/08_pruning.md)
- 32 GB of RAM and a relatively modern CPU
Expand Down
10 changes: 8 additions & 2 deletions prover/crates/lib/prover_dal/src/fri_prover_dal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -456,8 +456,14 @@ impl FriProverDal<'_, '_> {
SELECT
protocol_version AS "protocol_version!",
protocol_version_patch AS "protocol_version_patch!",
COUNT(*) FILTER (WHERE status = 'queued') as queued,
COUNT(*) FILTER (WHERE status = 'in_progress') as in_progress
COUNT(*) FILTER (
WHERE
status = 'queued'
) AS queued,
COUNT(*) FILTER (
WHERE
status = 'in_progress'
) AS in_progress
FROM
prover_jobs_fri
WHERE
Expand Down

0 comments on commit ed97d24

Please sign in to comment.