aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--app/manifest.json2
-rw-r--r--ui/app/components/pending-tx.js2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 14a6ef3a7..cbab1c71a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
## Current Master
+## 3.7.6 2017-6-5
+
+- Fix bug that prevented publishing contracts.
+
## 3.7.5 2017-6-5
- Prevent users from sending to the `0x0` address.
diff --git a/app/manifest.json b/app/manifest.json
index acdb3795e..2d321e862 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -1,7 +1,7 @@
{
"name": "MetaMask",
"short_name": "Metamask",
- "version": "3.7.5",
+ "version": "3.7.6",
"manifest_version": 2,
"author": "https://metamask.io",
"description": "Ethereum Browser Extension",
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index a106f245b..e3b307b0b 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -45,7 +45,7 @@ PendingTx.prototype.render = function () {
const balance = account ? account.balance : '0x0'
// recipient check
- const isValidAddress = util.isValidAddress(txParams.to)
+ const isValidAddress = !txParams.to || util.isValidAddress(txParams.to)
// Gas
const gas = txParams.gas