https://www.postgresql.org/docs/current/datatype-numeric.html Currently, `watching_tx.amount`, `recipient.amount` as well as `tx.fee` columns are of type `real` which causes precision loss when the value is > 1. We need to change those types to `double`.
https://www.postgresql.org/docs/current/datatype-numeric.html
Currently,
watching_tx.amount,recipient.amountas well astx.feecolumns are of typerealwhich causes precision loss when the value is > 1.We need to change those types to
double.