xeth: fixed contract addr check

pull/1615/head
Jeffrey Wilcke 9 years ago
parent d7580f21f6
commit b6c5b3b4a7
  1. 2
      xeth/xeth.go

@ -894,7 +894,7 @@ func (self *XEth) Transact(fromStr, toStr, nonceStr, valueStr, gasStr, gasPriceS
return "", err
}
if !isAddress(toStr) {
if len(toStr) > 0 && toStr != "0x" && !isAddress(toStr) {
return "", errors.New("Invalid address")
}

Loading…
Cancel
Save