Remove unnecessary debug log in ethereum SendRawTransaction

pull/53/head
Martin Boehm 2018-09-05 19:41:52 +02:00
parent 2fd84dd97b
commit a6690a0f19
1 changed files with 0 additions and 1 deletions

View File

@ -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 {