diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2017-01-07 06:41:40 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2017-01-07 06:41:40 +0800 |
commit | 3a6159080e6c89d4136a3e5e588afc021ef42881 (patch) | |
tree | ecb09f231d89085e78a140c1d82453f727026e1d | |
parent | 98ebdeeeacc973a98fd07ead204cf4d84eb3adee (diff) | |
download | tangerine-wallet-browser-3a6159080e6c89d4136a3e5e588afc021ef42881.tar tangerine-wallet-browser-3a6159080e6c89d4136a3e5e588afc021ef42881.tar.gz tangerine-wallet-browser-3a6159080e6c89d4136a3e5e588afc021ef42881.tar.bz2 tangerine-wallet-browser-3a6159080e6c89d4136a3e5e588afc021ef42881.tar.lz tangerine-wallet-browser-3a6159080e6c89d4136a3e5e588afc021ef42881.tar.xz tangerine-wallet-browser-3a6159080e6c89d4136a3e5e588afc021ef42881.tar.zst tangerine-wallet-browser-3a6159080e6c89d4136a3e5e588afc021ef42881.zip |
quick typo fix.
-rw-r--r-- | ui/app/conf-tx.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js index 52b7a7ae4..5a645022a 100644 --- a/ui/app/conf-tx.js +++ b/ui/app/conf-tx.js @@ -100,7 +100,7 @@ ConfirmTxScreen.prototype.render = function () { selectedAccount: state.selectedAccount, accounts: state.accounts, identities: state.identities, - insufficientBalance: this.checkBalnceAgainstTx(txData), + insufficientBalance: this.checkBalanceAgainstTx(txData), // Actions buyEth: this.buyEth.bind(this, txParams.from || state.selectedAccount), sendTransaction: this.sendTransaction.bind(this, txData), @@ -123,7 +123,7 @@ function currentTxView (opts) { return h(PendingMsg, opts) } } -ConfirmTxScreen.prototype.checkBalnceAgainstTx = function (txData) { +ConfirmTxScreen.prototype.checkBalanceAgainstTx = function (txData) { var state = this.props var txParams = txData.txParams || {} |