From a5169bd8804f816f23198a8a4861fa98a732f559 Mon Sep 17 00:00:00 2001 From: "John C. Vernaleo" Date: Mon, 5 May 2014 09:08:45 -0400 Subject: [PATCH] Remove extraneous character that got added to comment. --- jsonresults.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)