Remove extraneous character that got added to comment.

This commit is contained in:
John C. Vernaleo 2014-05-05 09:08:45 -04:00
parent 94451d7a9c
commit a5169bd880

View file

@ -427,7 +427,7 @@ func ReadResultCmd(cmd string, message []byte) (Reply, error) {
case "getrawtransaction":
// getrawtransaction can either return a JSON object or a
// hex-encoded string depending on the verbose flag. Choose the
// right form accordingly.=
// right form accordingly.
if bytes.IndexByte(objmap["result"], '{') > -1 {
var res TxRawResult
err = json.Unmarshal(objmap["result"], &res)