Skip to content

Commit

Permalink
chore: merge develop
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed Jan 27, 2025
1 parent 0f6529e commit 523a10f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/datastore/pg-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4563,7 +4563,7 @@ export class PgStore extends BasePgStore {
SUM(execution_cost_read_length) AS read_length,
SUM(execution_cost_write_count) AS write_count,
SUM(execution_cost_write_length) AS write_length,
SUM(tx_total_size) AS tx_total_size,
SUM(COALESCE(tx_total_size, 0)) AS tx_total_size,
COUNT(*) AS block_count
FROM blocks
WHERE block_height >= (SELECT block_height FROM tenure_change_block)
Expand Down Expand Up @@ -4630,7 +4630,7 @@ export class PgStore extends BasePgStore {
execution_cost_read_length,
execution_cost_write_count,
execution_cost_write_length,
tx_total_size,
COALESCE(tx_total_size, 0) AS tx_total_size,
CASE
${tenureCond}
END AS tenure_index
Expand Down

0 comments on commit 523a10f

Please sign in to comment.