Commit 6add45cd authored by SilentCicero's avatar SilentCicero

Remove Extra Loggers

parent 7ec8c257
...@@ -787,9 +787,6 @@ func (self *XEth) FromNumber(str string) string { ...@@ -787,9 +787,6 @@ func (self *XEth) FromNumber(str string) string {
func (self *XEth) PushTx(encodedTx string) (string, error) { func (self *XEth) PushTx(encodedTx string) (string, error) {
tx := types.NewTransactionFromBytes(common.FromHex(encodedTx)) 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) err := self.backend.TxPool().Add(tx)
if err != nil { if err != nil {
return "", err return "", err
...@@ -968,7 +965,7 @@ func (self *XEth) Transact(fromStr, toStr, nonceStr, valueStr, gasStr, gasPriceS ...@@ -968,7 +965,7 @@ func (self *XEth) Transact(fromStr, toStr, nonceStr, valueStr, gasStr, gasPriceS
return core.AddressFromMessage(tx).Hex(), nil return core.AddressFromMessage(tx).Hex(), nil
} else { } 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 return tx.Hash().Hex(), nil
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment