diff options
author | Florian Dold <florian.dold@gmail.com> | 2018-07-05 00:21:11 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2018-07-05 00:21:23 +0200 |
commit | a4edc3b17f27de5866e11d04a1fc9bbd4d657867 (patch) | |
tree | db4764ad5856ba5852e22765637c7d1c32976eca | |
parent | e9d280eaea376d80bb6fd9895b9f19c6ad264b4c (diff) |
remove wrong toFloat function
Amounts should never be converted to floats, the one use of the function was bogus.
-rw-r--r-- | src/amounts.ts | 8 | ||||
-rw-r--r-- | src/webex/pages/return-coins.tsx | 2 |
2 files changed, 1 insertions, 9 deletions
diff --git a/src/amounts.ts b/src/amounts.ts index 280cd636c..1aefe07e1 100644 --- a/src/amounts.ts +++ b/src/amounts.ts @@ -265,14 +265,6 @@ export function parseOrThrow(s: string): AmountJson { /** - * Convert the amount to a float. - */ -export function toFloat(a: AmountJson): number { - return a.value + (a.fraction / fractionalBase); -} - - -/** * Convert a float to a Taler amount. * Loss of precision possible. */ diff --git a/src/webex/pages/return-coins.tsx b/src/webex/pages/return-coins.tsx index ff998d869..278f8af9d 100644 --- a/src/webex/pages/return-coins.tsx +++ b/src/webex/pages/return-coins.tsx @@ -70,7 +70,7 @@ class ReturnSelectionItem extends React.Component<ReturnSelectionItemProps, Retu }); this.state = { currency: props.balance.byExchange[props.exchangeUrl].available.currency, - selectedValue: Amounts.toFloat(props.balance.byExchange[props.exchangeUrl].available).toString(), + selectedValue: Amounts.toString(props.balance.byExchange[props.exchangeUrl].available), selectedWire: "", supportedWires, }; |