We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ec08850 + 84ba34c commit 160a1bcCopy full SHA for 160a1bc
2 files changed
access/grpc/client.go
@@ -117,6 +117,10 @@ func (c *Client) RPCClient() RPCClient {
117
return c.grpc.RPCClient()
118
}
119
120
+func (c *Client) ExecutionDataRPCClient() ExecutionDataRPCClient {
121
+ return c.grpc.ExecutionDataRPCClient()
122
+}
123
+
124
func (c *Client) Ping(ctx context.Context) error {
125
return c.grpc.Ping(ctx)
126
access/grpc/grpc.go
@@ -134,6 +134,10 @@ func (c *BaseClient) RPCClient() RPCClient {
134
return c.rpcClient
135
136
137
+func (c *BaseClient) ExecutionDataRPCClient() ExecutionDataRPCClient {
138
+ return c.executionDataClient
139
140
141
// Close closes the client connection.
142
func (c *BaseClient) Close() error {
143
return c.close()
0 commit comments