diff --git a/jsonresults.go b/jsonresults.go index 6d6fdf5d..f63eb16e 100644 --- a/jsonresults.go +++ b/jsonresults.go @@ -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)