diff options
author | frankiebee <frankie.diamond@gmail.com> | 2018-04-05 03:25:51 +0800 |
---|---|---|
committer | frankiebee <frankie.diamond@gmail.com> | 2018-04-05 05:27:20 +0800 |
commit | 457a47bf62272deb257e3935a62e0ed265a49d78 (patch) | |
tree | a2ff6a919ab18a13f68e2c1a1815e0831974dc71 /app/scripts/lib/tx-gas-utils.js | |
parent | ca780075a835172c60a47bac2681f4a893e1b515 (diff) | |
download | tangerine-wallet-browser-457a47bf62272deb257e3935a62e0ed265a49d78.tar tangerine-wallet-browser-457a47bf62272deb257e3935a62e0ed265a49d78.tar.gz tangerine-wallet-browser-457a47bf62272deb257e3935a62e0ed265a49d78.tar.bz2 tangerine-wallet-browser-457a47bf62272deb257e3935a62e0ed265a49d78.tar.lz tangerine-wallet-browser-457a47bf62272deb257e3935a62e0ed265a49d78.tar.xz tangerine-wallet-browser-457a47bf62272deb257e3935a62e0ed265a49d78.tar.zst tangerine-wallet-browser-457a47bf62272deb257e3935a62e0ed265a49d78.zip |
transactions - normalize txParams
Diffstat (limited to 'app/scripts/lib/tx-gas-utils.js')
-rw-r--r-- | app/scripts/lib/tx-gas-utils.js | 35 |
1 files changed, 1 insertions, 34 deletions
diff --git a/app/scripts/lib/tx-gas-utils.js b/app/scripts/lib/tx-gas-utils.js index 829b4c421..c579e462a 100644 --- a/app/scripts/lib/tx-gas-utils.js +++ b/app/scripts/lib/tx-gas-utils.js @@ -4,7 +4,7 @@ const { BnMultiplyByFraction, bnToHex, } = require('./util') -const { addHexPrefix, isValidAddress } = require('ethereumjs-util') +const { addHexPrefix } = require('ethereumjs-util') const SIMPLE_GAS_COST = '0x5208' // Hex for 21000, cost of a simple send. /* @@ -100,37 +100,4 @@ module.exports = class TxGasUtil { // otherwise use blockGasLimit return bnToHex(upperGasLimitBn) } - - async validateTxParams (txParams) { - this.validateFrom(txParams) - this.validateRecipient(txParams) - if ('value' in txParams) { - const value = txParams.value.toString() - if (value.includes('-')) { - throw new Error(`Invalid transaction value of ${txParams.value} not a positive number.`) - } - - if (value.includes('.')) { - throw new Error(`Invalid transaction value of ${txParams.value} number must be in wei`) - } - } - } - - validateFrom (txParams) { - if ( !(typeof txParams.from === 'string') ) throw new Error(`Invalid from address ${txParams.from} not a string`) - if (!isValidAddress(txParams.from)) throw new Error('Invalid from address') - } - - validateRecipient (txParams) { - if (txParams.to === '0x' || txParams.to === null ) { - if (txParams.data) { - delete txParams.to - } else { - throw new Error('Invalid recipient address') - } - } else if ( txParams.to !== undefined && !isValidAddress(txParams.to) ) { - throw new Error('Invalid recipient address') - } - return txParams - } }
\ No newline at end of file |