From 86d150bbb36e34095d1615d449f147d0ab15f0dc Mon Sep 17 00:00:00 2001 From: "Owain G. Ainsworth" Date: Mon, 17 Jun 2013 23:56:25 +0100 Subject: [PATCH] Remove accidentally commited printf. --- signature.go | 1 - 1 file changed, 1 deletion(-) diff --git a/signature.go b/signature.go index c5abeb3f..adcead0f 100644 --- a/signature.go +++ b/signature.go @@ -44,7 +44,6 @@ func ParseSignature(sigStr []byte, curve elliptic.Curve) (*Signature, error) { siglen := sigStr[index] index++ if int(siglen+2) != len(sigStr) { - fmt.Printf("siglen: %v, len: %v\n", siglen, len(sigStr)) return nil, errors.New("malformed signature: bad length") } // trim the slice we're working on so we only look at what matters.