diff options
author | frankiebee <frankie.diamond@gmail.com> | 2017-09-06 11:33:50 +0800 |
---|---|---|
committer | frankiebee <frankie.diamond@gmail.com> | 2017-09-06 11:33:50 +0800 |
commit | 00bd5b143ffc13ac0a48f2049f61f26082af12c8 (patch) | |
tree | 2f30cd2af81d0a79dba403fe3d0241f50f907bca /app/scripts | |
parent | 4c554f32eca5ceda2d525b967075ec2b6ff41809 (diff) | |
download | tangerine-wallet-browser-00bd5b143ffc13ac0a48f2049f61f26082af12c8.tar tangerine-wallet-browser-00bd5b143ffc13ac0a48f2049f61f26082af12c8.tar.gz tangerine-wallet-browser-00bd5b143ffc13ac0a48f2049f61f26082af12c8.tar.bz2 tangerine-wallet-browser-00bd5b143ffc13ac0a48f2049f61f26082af12c8.tar.lz tangerine-wallet-browser-00bd5b143ffc13ac0a48f2049f61f26082af12c8.tar.xz tangerine-wallet-browser-00bd5b143ffc13ac0a48f2049f61f26082af12c8.tar.zst tangerine-wallet-browser-00bd5b143ffc13ac0a48f2049f61f26082af12c8.zip |
rename tx-utils.js -> tx-gas-utils.js
Diffstat (limited to 'app/scripts')
-rw-r--r-- | app/scripts/lib/tx-gas-utils.js (renamed from app/scripts/lib/tx-utils.js) | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/app/scripts/lib/tx-utils.js b/app/scripts/lib/tx-gas-utils.js index 618f69e1c..246c94ccd 100644 --- a/app/scripts/lib/tx-utils.js +++ b/app/scripts/lib/tx-gas-utils.js @@ -77,10 +77,6 @@ module.exports = class txProvideUtil { return bnToHex(upperGasLimitBn) } - async publishTransaction (rawTx) { - return await this.query.sendRawTransaction(rawTx) - } - async validateTxParams (txParams) { if (('value' in txParams) && txParams.value.indexOf('-') === 0) { throw new Error(`Invalid transaction value of ${txParams.value} not a positive number.`) |