Merge pull request #1681 from MetaMask/AddressStripping

Remove trailing periods and whitespace
feature/default_network_editable
Dan Finlay 7 years ago committed by GitHub
commit 3fde5481ef
  1. 2
      ui/app/send.js

@ -244,7 +244,7 @@ SendTransactionScreen.prototype.recipientDidChange = function (recipient, nickna
SendTransactionScreen.prototype.onSubmit = function () {
const state = this.state || {}
const recipient = state.recipient || document.querySelector('input[name="address"]').value
const recipient = state.recipient || document.querySelector('input[name="address"]').value.replace(/^[.\s]+|[.\s]+$/g, '')
const nickname = state.nickname || ' '
const input = document.querySelector('input[name="amount"]').value
const value = util.normalizeEthStringToWei(input)

Loading…
Cancel
Save