Merge pull request #1446 from MetaMask/DisallowDecimalsInHexInput

Fix bug where decimals in gas inputs gave strange results
feature/default_network_editable
Dan Finlay 8 years ago committed by GitHub
commit fae34c169f
  1. 1
      CHANGELOG.md
  2. 2
      ui/app/components/hex-as-decimal-input.js

@ -5,6 +5,7 @@
- Fix bug where edited gas parameters would not take effect.
- Trim currency list.
- Fix event filter bug introduced by newer versions of Geth.
- Fix bug where decimals in gas inputs could result in strange values.
## 3.6.4 2017-5-8

@ -139,7 +139,7 @@ HexAsDecimalInput.prototype.constructWarning = function () {
}
function hexify (decimalString) {
const hexBN = new BN(decimalString, 10)
const hexBN = new BN(parseInt(decimalString), 10)
return '0x' + hexBN.toString('hex')
}

Loading…
Cancel
Save