Merge pull request #1551 from MetaMask/i1550-FixContractPublication

I1550 fix contract publication
feature/default_network_editable
kumavis 8 years ago committed by GitHub
commit 29c7739efc
  1. 4
      CHANGELOG.md
  2. 2
      app/manifest.json
  3. 2
      ui/app/components/pending-tx.js

@ -2,6 +2,10 @@
## Current Master ## Current Master
## 3.7.6 2017-6-5
- Fix bug that prevented publishing contracts.
## 3.7.5 2017-6-5 ## 3.7.5 2017-6-5
- Prevent users from sending to the `0x0` address. - Prevent users from sending to the `0x0` address.

@ -1,7 +1,7 @@
{ {
"name": "MetaMask", "name": "MetaMask",
"short_name": "Metamask", "short_name": "Metamask",
"version": "3.7.5", "version": "3.7.6",
"manifest_version": 2, "manifest_version": 2,
"author": "https://metamask.io", "author": "https://metamask.io",
"description": "Ethereum Browser Extension", "description": "Ethereum Browser Extension",

@ -45,7 +45,7 @@ PendingTx.prototype.render = function () {
const balance = account ? account.balance : '0x0' const balance = account ? account.balance : '0x0'
// recipient check // recipient check
const isValidAddress = util.isValidAddress(txParams.to) const isValidAddress = !txParams.to || util.isValidAddress(txParams.to)
// Gas // Gas
const gas = txParams.gas const gas = txParams.gas

Loading…
Cancel
Save