From a6690a0f1962eddcedf563051eb5e33c50a8d9fc Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Wed, 5 Sep 2018 19:41:52 +0200 Subject: [PATCH] Remove unnecessary debug log in ethereum SendRawTransaction --- bchain/coins/eth/ethrpc.go | 1 - 1 file changed, 1 deletion(-) diff --git a/bchain/coins/eth/ethrpc.go b/bchain/coins/eth/ethrpc.go index 91f1fd82..d1a7bb56 100644 --- a/bchain/coins/eth/ethrpc.go +++ b/bchain/coins/eth/ethrpc.go @@ -505,7 +505,6 @@ func (b *EthereumRPC) EstimateSmartFee(blocks int, conservative bool) (float64, func (b *EthereumRPC) SendRawTransaction(hex string) (string, error) { ctx, cancel := context.WithTimeout(context.Background(), b.timeout) defer cancel() - glog.Info("SendRawTransaction hex ", hex) var raw json.RawMessage err := b.rpc.CallContext(ctx, &raw, "eth_sendRawTransaction", hex) if err != nil {