From c84ef00568f0f97dcfe51da5f05ce60ea08e0dc4 Mon Sep 17 00:00:00 2001 From: asabya Date: Mon, 3 Apr 2023 13:41:38 +0530 Subject: [PATCH] fix: tests --- pkg/ensm/eth/mock/eth.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/ensm/eth/mock/eth.go b/pkg/ensm/eth/mock/eth.go index c12377df..8c6e6a16 100644 --- a/pkg/ensm/eth/mock/eth.go +++ b/pkg/ensm/eth/mock/eth.go @@ -71,15 +71,11 @@ func (c *NamespaceManager) GetInfo(username string) (*ecdsa.PublicKey, string, e return nil, "", fmt.Errorf("no info available for user") } x := new(big.Int) - fmt.Println("i.X", i.X) x.SetBytes(i.X[:]) - fmt.Println("x", x.Bytes()) y := new(big.Int) - fmt.Println("i.Y", i.Y) y.SetBytes(i.Y[:]) - fmt.Println("y", y.Bytes()) pub := new(ecdsa.PublicKey) pub.X = x