rpc/client: fix some comments

This commit is contained in:
Roman Khimov 2020-04-29 18:15:26 +03:00
parent a49f2bc47c
commit e32367a1c2

View file

@ -39,8 +39,8 @@ type Client struct {
}
// Options defines options for the RPC client.
// All Values are optional. If any duration is not specified
// a default of 3 seconds will be used.
// All values are optional. If any duration is not specified
// a default of 4 seconds will be used.
type Options struct {
// Balancer is an implementation of request.BalanceGetter interface,
// if not set then the default Client's implementation will be used, but
@ -48,6 +48,9 @@ type Options struct {
// standard for neo-go, but only implemented as a plugin for C# node. So
// you can override it here to use NeoScanServer for example.
Balancer request.BalanceGetter
// Cert is a client-side certificate, it doesn't work at the moment along
// with the other two options below.
Cert string
Key string
CACert string