1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/app/pages/confirm-approve
Mark Stacey cc78378b8e
Allow editing max spend limit (#7919)
In the case where the initial spend limit for the `approve` function
was set to the maximum amount, editing this value would result in the
new limit being silently ignored. The transaction would be submitted
with the original max spend limit.

This occurred because function to generate the new custom data would
look for the expected spend limit in the existing data, then bail if
it was not found (and in these cases, it was never found).

The reason the value was not found is that it was erroneously being
converted to a `Number`. A JavaScript `Number` is not precise enough to
represent larger spend limits, so it would give the wrong hex value
(after rounding had taken place in the conversion to a floating-point
number).

The data string is now updated without relying upon the original token
value; the new value is inserted after the `spender` argument instead,
as the remainder of the `data` string is guaranteed to be the original
limit. Additionally, the conversion to a `Number` is now omitted so
that the custom spend limit is encoded correctly.

Fixes #7915
2020-01-28 22:49:32 -04:00
..
confirm-approve-content Allow editing max spend limit (#7919) 2020-01-28 22:49:32 -04:00
confirm-approve.component.js Allow editing max spend limit (#7919) 2020-01-28 22:49:32 -04:00
confirm-approve.container.js Allow editing max spend limit (#7919) 2020-01-28 22:49:32 -04:00
confirm-approve.util.js Allow editing max spend limit (#7919) 2020-01-28 22:49:32 -04:00
index.js Folder restructure (#6304) 2019-03-21 20:33:30 -02:30
index.scss Redesign approve screen (#7271) 2019-11-05 11:43:48 -03:30