Skip to main content

premium.getMyBoosts

Obtain which peers are we currently boosting, and how many boost slots we have left.

func (c *Client) PremiumGetMyBoosts(ctx context.Context) (*PremiumMyBoosts, error)

Calling this method

client.Run(ctx, func(ctx context.Context) error {
api := client.API()

res, err := api.PremiumGetMyBoosts(ctx)
if err != nil {
return err
}
_ = res // *PremiumMyBoosts
return nil
})

Parameters

This method takes no parameters.

Returns

*PremiumMyBoosts

References