[#422] pkg/innerring: fix typo in config parameter name
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
6679d59e89
commit
364945a955
1 changed files with 2 additions and 2 deletions
|
@ -580,7 +580,7 @@ func createListener(ctx context.Context, p *chainParams) (event.Listener, error)
|
||||||
sub, err := subscriber.New(ctx, &subscriber.Params{
|
sub, err := subscriber.New(ctx, &subscriber.Params{
|
||||||
Log: p.log,
|
Log: p.log,
|
||||||
Endpoint: p.cfg.GetString(p.name + ".endpoint.notification"),
|
Endpoint: p.cfg.GetString(p.name + ".endpoint.notification"),
|
||||||
DialTimeout: p.cfg.GetDuration(p.name + ".dial_timeouts"),
|
DialTimeout: p.cfg.GetDuration(p.name + ".dial_timeout"),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -603,7 +603,7 @@ func createClient(ctx context.Context, p *chainParams) (*client.Client, error) {
|
||||||
p.cfg.GetString(p.name+".endpoint.client"),
|
p.cfg.GetString(p.name+".endpoint.client"),
|
||||||
client.WithContext(ctx),
|
client.WithContext(ctx),
|
||||||
client.WithLogger(p.log),
|
client.WithLogger(p.log),
|
||||||
client.WithDialTimeout(p.cfg.GetDuration(p.name+".dial_timeouts")),
|
client.WithDialTimeout(p.cfg.GetDuration(p.name+".dial_timeout")),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue