mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 01:39:44 +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 BN = ethUtil.BN
|
||||
const assert = require('assert')
|
||||
const BN = require('bn.js')
|
||||
|
||||
module.exports = {
|
||||
getStack,
|
||||
@ -15,6 +16,10 @@ function getStack () {
|
||||
}
|
||||
|
||||
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 value = hexToBn(txParams.value)
|
||||
const gasLimit = hexToBn(txParams.gas)
|
||||
|
Loading…
Reference in New Issue
Block a user