Skip to content

Commit

Permalink
sqlx prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
carneiro-cw committed Mar 8, 2024
1 parent 67a9e43 commit 164c4f0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 23 deletions.

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

This file was deleted.

4 changes: 1 addition & 3 deletions src/eth/storage/postgres/queries/insert_account.sql
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
INSERT INTO accounts (
address, bytecode, latest_balance, latest_nonce, creation_block, previous_balance, previous_nonce
)
INSERT INTO accounts (address, latest_nonce, latest_balance, bytecode, creation_block, previous_balance, previous_nonce)
VALUES ($1, $2, $3, $4, $5, $6, $7)
ON CONFLICT (address) DO
UPDATE
Expand Down

0 comments on commit 164c4f0

Please sign in to comment.