forked from TrueCloudLab/frostfs-node
[#417] go.mod: Update neo-go
Update to master, because after the API update notary signer is being incorrectly formed. Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
2dd3fc8b7e
commit
63473d0806
3 changed files with 26 additions and 9 deletions
|
@ -155,8 +155,10 @@ func New(ctx context.Context, key *keys.PrivateKey, opts ...Option) (*Client, er
|
|||
}
|
||||
|
||||
func (c *Client) newCli(ctx context.Context, endpoint string) (*rpcclient.WSClient, *actor.Actor, error) {
|
||||
cli, err := rpcclient.NewWS(ctx, endpoint, rpcclient.Options{
|
||||
DialTimeout: c.cfg.dialTimeout,
|
||||
cli, err := rpcclient.NewWS(ctx, endpoint, rpcclient.WSOptions{
|
||||
Options: rpcclient.Options{
|
||||
DialTimeout: c.cfg.dialTimeout,
|
||||
},
|
||||
})
|
||||
if err != nil {
|
||||
return nil, nil, fmt.Errorf("WS client creation: %w", err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue