mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
util - sufficientBalance - validate input
This commit is contained in:
parent
d40bd9a726
commit
5418813ed1
@ -1,5 +1,6 @@
|
|||||||
const ethUtil = require('ethereumjs-util')
|
const ethUtil = require('ethereumjs-util')
|
||||||
const BN = ethUtil.BN
|
const assert = require('assert')
|
||||||
|
const BN = require('bn.js')
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
getStack,
|
getStack,
|
||||||
@ -15,6 +16,10 @@ function getStack () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function sufficientBalance (txParams, hexBalance) {
|
function sufficientBalance (txParams, hexBalance) {
|
||||||
|
// validate hexBalance is a hex string
|
||||||
|
assert.equal(typeof hexBalance, 'string', 'sufficientBalance - hexBalance is not a hex string')
|
||||||
|
assert.equal(hexBalance.slice(0, 2), '0x', 'sufficientBalance - hexBalance is not a hex string')
|
||||||
|
|
||||||
const balance = hexToBn(hexBalance)
|
const balance = hexToBn(hexBalance)
|
||||||
const value = hexToBn(txParams.value)
|
const value = hexToBn(txParams.value)
|
||||||
const gasLimit = hexToBn(txParams.gas)
|
const gasLimit = hexToBn(txParams.gas)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user