You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In some places, decimal places are trimmed if the last digits are zero. I think this can lead the user to send the wrong amount and is inconsistent with some other places.
For example, the "balance" and "value" columns of "Transactions/UTXOs" grid always display 8 decimal places, but the "send" button and "amount" and "fee" inputs of the send view don't.
I noticed this can be adjusted with setMinimumFractionDigits(8) on UnitFormat::getBtcFormat() for the send button, although "Mempool" label will display "0.00000000 BTC" instead of "0 BTC" (which I'm ok with, but might be undesirable) and on CoinFilter::coinFormat for the text fields.
The text was updated successfully, but these errors were encountered:
In some places, decimal places are trimmed if the last digits are zero. I think this can lead the user to send the wrong amount and is inconsistent with some other places.
For example, the "balance" and "value" columns of "Transactions/UTXOs" grid always display 8 decimal places, but the "send" button and "amount" and "fee" inputs of the send view don't.
I noticed this can be adjusted with
setMinimumFractionDigits(8)
onUnitFormat::getBtcFormat()
for the send button, although "Mempool" label will display "0.00000000 BTC" instead of "0 BTC" (which I'm ok with, but might be undesirable) and onCoinFilter::coinFormat
for the text fields.The text was updated successfully, but these errors were encountered: