Merge pull request #974 from MetaMask/typo-fix

quick typo fix.
feature/default_network_editable
Frankie 8 years ago committed by GitHub
commit af312bdc90
  1. 4
      ui/app/conf-tx.js

@ -100,7 +100,7 @@ ConfirmTxScreen.prototype.render = function () {
selectedAccount: state.selectedAccount, selectedAccount: state.selectedAccount,
accounts: state.accounts, accounts: state.accounts,
identities: state.identities, identities: state.identities,
insufficientBalance: this.checkBalnceAgainstTx(txData), insufficientBalance: this.checkBalanceAgainstTx(txData),
// Actions // Actions
buyEth: this.buyEth.bind(this, txParams.from || state.selectedAccount), buyEth: this.buyEth.bind(this, txParams.from || state.selectedAccount),
sendTransaction: this.sendTransaction.bind(this, txData), sendTransaction: this.sendTransaction.bind(this, txData),
@ -123,7 +123,7 @@ function currentTxView (opts) {
return h(PendingMsg, opts) return h(PendingMsg, opts)
} }
} }
ConfirmTxScreen.prototype.checkBalnceAgainstTx = function (txData) { ConfirmTxScreen.prototype.checkBalanceAgainstTx = function (txData) {
var state = this.props var state = this.props
var txParams = txData.txParams || {} var txParams = txData.txParams || {}

Loading…
Cancel
Save