(ups common.Upstream)
| 269 | } |
| 270 | |
| 271 | func (qe *EvmQueryExecutor) supportsQueryMethods(ups common.Upstream) bool { |
| 272 | client, ok := getGrpcBdsClient(ups) |
| 273 | return ok && client.QueryClient() != nil |
| 274 | } |
| 275 | |
| 276 | func (qe *EvmQueryExecutor) resolveQueryBounds(ctx context.Context, from, to string, order evm.SortOrder, cursor *evm.CursorBlock) (uint64, uint64, error) { |
| 277 | _, span := common.StartDetailSpan(ctx, "Query.ResolveQueryBounds") |
no test coverage detected