From 6add45cd10a8f33e838a8922e694db7181c06fd9 Mon Sep 17 00:00:00 2001
From: SilentCicero <silentcicero@outlook.com>
Date: Tue, 16 Jun 2015 12:30:07 -0400
Subject: [PATCH] Remove Extra Loggers

---
 xeth/xeth.go | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/xeth/xeth.go b/xeth/xeth.go
index c64ae71e3..d2f992084 100644
--- a/xeth/xeth.go
+++ b/xeth/xeth.go
@@ -787,9 +787,6 @@ func (self *XEth) FromNumber(str string) string {
 
 func (self *XEth) PushTx(encodedTx string) (string, error) {
 	tx := types.NewTransactionFromBytes(common.FromHex(encodedTx))
-
-	glog.V(logger.Info).Infof("Tx(%x) gas: %x\n", tx.Hash(), tx.Gas())
-
 	err := self.backend.TxPool().Add(tx)
 	if err != nil {
 		return "", err
@@ -968,7 +965,7 @@ func (self *XEth) Transact(fromStr, toStr, nonceStr, valueStr, gasStr, gasPriceS
 
 		return core.AddressFromMessage(tx).Hex(), nil
 	} else {
-		glog.V(logger.Info).Infof("YEYEYE!! Tx(%x) to: %x\n, gas: %x", tx.Hash(), tx.To(), tx.Gas())
+		glog.V(logger.Info).Infof("Tx(%x) to: %x\n", tx.Hash(), tx.To())
 	}
 	return tx.Hash().Hex(), nil
 }
-- 
GitLab