[#1422] morph: Drop single client as not used

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
Dmitrii Stepanov 2024-10-09 11:34:36 +03:00 committed by Dmitrii Stepanov
parent e314f328c4
commit 5b653aa65f

View file

@ -41,8 +41,6 @@ type cfg struct {
endpoints []Endpoint endpoints []Endpoint
singleCli *rpcclient.WSClient // neo-go client for single client mode
inactiveModeCb Callback inactiveModeCb Callback
switchInterval time.Duration switchInterval time.Duration
@ -124,21 +122,6 @@ func New(ctx context.Context, key *keys.PrivateKey, opts ...Option) (*Client, er
var err error var err error
var act *actor.Actor var act *actor.Actor
if cfg.singleCli != nil {
// return client in single RPC node mode that uses
// predefined WS client
//
// in case of the closing web socket connection:
// if extra endpoints were provided via options,
// they will be used in switch process, otherwise
// inactive mode will be enabled
cli.client = cfg.singleCli
act, err = newActor(cfg.singleCli, acc, *cfg)
if err != nil {
return nil, fmt.Errorf("could not create RPC actor: %w", err)
}
} else {
var endpoint Endpoint var endpoint Endpoint
for cli.endpoints.curr, endpoint = range cli.endpoints.list { for cli.endpoints.curr, endpoint = range cli.endpoints.list {
cli.client, act, err = cli.newCli(ctx, endpoint) cli.client, act, err = cli.newCli(ctx, endpoint)
@ -158,7 +141,6 @@ func New(ctx context.Context, key *keys.PrivateKey, opts ...Option) (*Client, er
if cli.client == nil { if cli.client == nil {
return nil, ErrNoHealthyEndpoint return nil, ErrNoHealthyEndpoint
} }
}
cli.setActor(act) cli.setActor(act)
go cli.closeWaiter(ctx) go cli.closeWaiter(ctx)
@ -285,17 +267,6 @@ func WithEndpoints(endpoints ...Endpoint) Option {
} }
} }
// WithSingleClient returns a client constructor option
// that specifies single neo-go client and forces Client
// to use it for requests.
//
// Passed client must already be initialized.
func WithSingleClient(cli *rpcclient.WSClient) Option {
return func(c *cfg) {
c.singleCli = cli
}
}
// WithConnLostCallback return a client constructor option // WithConnLostCallback return a client constructor option
// that specifies a callback that is called when Client // that specifies a callback that is called when Client
// unsuccessfully tried to connect to all the specified // unsuccessfully tried to connect to all the specified