Fix wrong share balance if sell order canceled

This commit is contained in:
ekzyis 2023-12-03 02:41:03 +01:00
parent 3396bd4ccf
commit 305e248310
1 changed files with 2 additions and 1 deletions

View File

@ -302,7 +302,8 @@ func (db *DB) FetchUserBalance(tx *sql.Tx, ctx context.Context, marketId int, pu
"FROM orders o " +
"LEFT JOIN invoices i ON i.id = o.invoice_id " +
"JOIN shares s ON s.id = o.share_id " +
"WHERE o.pubkey = $1 AND s.market_id = $2 AND ( (o.side = 'BUY' AND i.confirmed_at IS NOT NULL AND o.order_id IS NOT NULL) OR o.side = 'SELL' ) " +
"WHERE o.pubkey = $1 AND s.market_id = $2 AND o.deleted_at IS NULL " +
"AND ( (o.side = 'BUY' AND i.confirmed_at IS NOT NULL AND o.order_id IS NOT NULL) OR o.side = 'SELL' ) " +
"GROUP BY o.pubkey, s.description"
rows, err := tx.QueryContext(ctx, query, pubkey, marketId)
if err != nil {