Skip to content

Commit

Permalink
always overwrite
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew7234 committed Feb 9, 2024
1 parent d02de26 commit d71f9b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions analyzer/queries/queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,9 +477,9 @@ var (
RuntimeEventEvmParsedFieldsUpdate = `
UPDATE chain.runtime_events
SET
evm_log_name = COALESCE($5, evm_log_name),
evm_log_params = COALESCE($6, evm_log_params),
evm_log_signature = COALESCE($7, evm_log_signature),
evm_log_name = $5,
evm_log_params = $6,
evm_log_signature = $7,
abi_parsed_at = CURRENT_TIMESTAMP
WHERE
runtime = $1 AND
Expand Down

0 comments on commit d71f9b8

Please sign in to comment.