We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d5525e commit c8f0802Copy full SHA for c8f0802
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## Current Master
4
5
+- Fix bug that prevented publishing contracts.
6
+
7
## 3.7.5 2017-6-5
8
9
- Prevent users from sending to the `0x0` address.
ui/app/components/pending-tx.js
@@ -45,7 +45,7 @@ PendingTx.prototype.render = function () {
45
const balance = account ? account.balance : '0x0'
46
47
// recipient check
48
- const isValidAddress = util.isValidAddress(txParams.to)
+ const isValidAddress = !txParams.to || util.isValidAddress(txParams.to)
49
50
// Gas
51
const gas = txParams.gas
0 commit comments