ethclient: remove use of common.ToHex (#20326)

This commit is contained in:
Felix Lange 2019-11-19 14:53:26 +01:00 committed by Péter Szilágyi
parent 0b6338321f
commit c013192ba7

View File

@ -514,7 +514,7 @@ func (ec *Client) SendTransaction(ctx context.Context, tx *types.Transaction) er
if err != nil {
return err
}
return ec.c.CallContext(ctx, nil, "eth_sendRawTransaction", common.ToHex(data))
return ec.c.CallContext(ctx, nil, "eth_sendRawTransaction", hexutil.Encode(data))
}
func toCallArg(msg ethereum.CallMsg) interface{} {