itests: Fix TestEthSubscribeLogs

This commit is contained in:
Łukasz Magiera
2023-01-31 10:28:12 +01:00
parent 1286d76988
commit 965b1cf03c
9 changed files with 31 additions and 15 deletions
+1 -1
View File
@@ -359,7 +359,7 @@ func GetFullNodeAPIV1(ctx *cli.Context, opts ...GetFullNodeOption) (v1api.FullNo
var closers []jsonrpc.ClientCloser
for _, head := range heads {
v1api, closer, err := client.NewFullNodeRPCV1(ctx.Context, head.addr, head.header)
v1api, closer, err := client.NewFullNodeRPCV1(ctx.Context, head.addr, head.header, rpcOpts...)
if err != nil {
log.Warnf("Not able to establish connection to node with addr: ", head.addr)
continue