Skip to content

Commit

Permalink
add missing part
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaidashenko committed Feb 22, 2024
1 parent 39b25c8 commit 0a38aa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/chains/evm/client/chain_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
})
}

Expand Down

0 comments on commit 0a38aa2

Please sign in to comment.