From 0a38aa2842f3c245298083733f566539696ef763 Mon Sep 17 00:00:00 2001 From: Dmytro Haidashenko Date: Thu, 22 Feb 2024 15:42:38 +0100 Subject: [PATCH] add missing part --- core/chains/evm/client/chain_client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/chains/evm/client/chain_client.go b/core/chains/evm/client/chain_client.go index fc856db3a8f..f02fc307f39 100644 --- a/core/chains/evm/client/chain_client.go +++ b/core/chains/evm/client/chain_client.go @@ -95,8 +95,8 @@ func (c *chainClient) BatchCallContext(ctx context.Context, b []rpc.BatchElem) e } func (c *chainClient) BatchCallContextAll(ctx context.Context, b []rpc.BatchElem) error { - return c.multiNode.DoAll(ctx, func(rpc RPCCLient) error { - rpc.BatchCallContext() + return c.multiNode.DoAll(ctx, func(ctx context.Context, rpc RPCCLient) error { + return rpc.BatchCallContext(ctx, b) }) }