From 86a6deba3feef1c5c5df09ddc72979318450b2a4 Mon Sep 17 00:00:00 2001 From: Matt Bell Date: Mon, 2 Jan 2017 18:49:54 -0800 Subject: [PATCH] Remove debug printing --- cmd/tmsp-cli/tmsp-cli.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/tmsp-cli/tmsp-cli.go b/cmd/tmsp-cli/tmsp-cli.go index cfc56d1e9..2fab906a0 100644 --- a/cmd/tmsp-cli/tmsp-cli.go +++ b/cmd/tmsp-cli/tmsp-cli.go @@ -290,8 +290,6 @@ func printResponse(c *cli.Context, res types.Result, s string, printCode bool) { // NOTE: s is interpreted as a string unless prefixed with 0x func stringOrHexToBytes(s string) ([]byte, error) { - fmt.Printf("string: %s %x\n", s, []byte(s)) - if len(s) > 2 && strings.ToLower(s[:2]) == "0x" { b, err := hex.DecodeString(s[2:]) if err != nil {