Skip to content

Commit

Permalink
euros value
Browse files Browse the repository at this point in the history
  • Loading branch information
ewansheldon committed Dec 7, 2023
1 parent eee2db3 commit 1740c9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liquidationPools.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const getDBData = async userAddress => {
let result = [];
const client = await pool.connect();
try {
result = (await client.query('SELECT snapshot_at, tst, euros, rewards FROM user_pool_snapshots_sepolia where user_address = $1', [userAddress])).rows;
result = (await client.query('SELECT snapshot_at, tst, euros, euros_value, rewards FROM user_pool_snapshots_sepolia where user_address = $1', [userAddress])).rows;
} finally {
client.release();
}
Expand Down

0 comments on commit 1740c9c

Please sign in to comment.