Browse Source

Avoid SQL error when checking value of token without usd on tx insert

feature/serveapicli
arnaubennassar 3 years ago
parent
commit
cf70111de5
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      db/l2db/apiqueries.go

+ 1
- 1
db/l2db/apiqueries.go

@ -50,7 +50,7 @@ func (l2db *L2DB) AddTxAPI(tx *PoolL2TxWrite) error {
defer l2db.apiConnCon.Release()
row := l2db.dbRead.QueryRow(`SELECT
($1::NUMERIC * token.usd * fee_percentage($2::NUMERIC)) /
($1::NUMERIC * COALESCE(token.usd, 0) * fee_percentage($2::NUMERIC)) /
(10.0 ^ token.decimals::NUMERIC)
FROM token WHERE token.token_id = $3;`,
tx.AmountFloat, tx.Fee, tx.TokenID)

Loading…
Cancel
Save